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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/modules/bpy_extras/object_utils.py')
-rw-r--r--release/scripts/modules/bpy_extras/object_utils.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/release/scripts/modules/bpy_extras/object_utils.py b/release/scripts/modules/bpy_extras/object_utils.py
index 88cd7398fe0..c48f03c133d 100644
--- a/release/scripts/modules/bpy_extras/object_utils.py
+++ b/release/scripts/modules/bpy_extras/object_utils.py
@@ -189,6 +189,14 @@ def object_data_add(context, obdata, operator=None, use_active_layer=True, name=
scene.update() # apply location
# scene.objects.active = obj_new
+ # Match up UV layers, this is needed so adding an object with UV's
+ # doesn't create new layers when there happens to be a naming mis-match.
+ uv_new = obdata.uv_layers.active
+ if uv_new is not None:
+ uv_act = obj_act.data.uv_layers.active
+ if uv_act is not None:
+ uv_new.name = uv_act.name
+
bpy.ops.object.join() # join into the active.
if obdata:
bpy.data.meshes.remove(obdata)