Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'io_coat3D/updateimage.py')
-rw-r--r--io_coat3D/updateimage.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/io_coat3D/updateimage.py b/io_coat3D/updateimage.py
index d0caa9d6..72d4d826 100644
--- a/io_coat3D/updateimage.py
+++ b/io_coat3D/updateimage.py
@@ -1,16 +1,26 @@
import bpy
import os
-def update(texcoat,tex_type,node):
+def update(texcoat,tex_type,node, udim_textures, udim_len):
if (os.path.normpath(texcoat[tex_type][0]) != os.path.normpath(node.image.filepath)):
tex_found = False
for image in bpy.data.images:
if (os.path.normpath(image.filepath) == os.path.normpath(texcoat[tex_type][0])):
+
node.image = image
+
+ node.image.reload()
tex_found = True
+
break
if (tex_found == False):
node.image = bpy.data.images.load(texcoat[tex_type][0])
+ if(udim_textures):
+ node.image.source = 'TILED'
+
+ for udim_index in udim_len:
+ if (udim_index != 1001):
+ node.image.tiles.new(udim_index)