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:
authorMatt Ebb <matt@mke3.net>2009-11-28 07:04:01 +0300
committerMatt Ebb <matt@mke3.net>2009-11-28 07:04:01 +0300
commitaa3ed478483e02101d7ee04d9118f5ecca066a8e (patch)
treed989b5c35b16c535b49f046a381595a2159f121b /release/scripts/ui
parent54c5859578362976cc54b4e04f0a513117b4698e (diff)
* New tool - Join as Shapes
Available in object mode (Object -> Join as Shapes), only works for meshes at the present. Will merge all selected objects as shape keys on the active object, if the vertex count is the same. This does not keep references to the external objects like in some applications, rather it's a quick way to update the shapes on the active object (perhaps after importing new versions from external applications).
Diffstat (limited to 'release/scripts/ui')
-rw-r--r--release/scripts/ui/space_view3d.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py
index fa7cbe152de..e61394832da 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -603,6 +603,7 @@ class VIEW3D_MT_object(bpy.types.Menu):
layout.separator()
+ layout.operator("object.join_shapes")
layout.operator("object.join")
layout.separator()