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:
authorDaniel Salazar <zanqdo@gmail.com>2014-01-02 01:00:22 +0400
committerDaniel Salazar <zanqdo@gmail.com>2014-01-02 01:00:22 +0400
commit39790a27e0a1567022ac405a1ffdb11ac6ebc49a (patch)
tree779c5f34aac53368fd342f168b6932046a8d58c6
parentbbfd52327456a0fdbcbb08cd506cb28bcc4e2028 (diff)
AnimAll: Enable keying of shapekeys on bezier curves (Thanks to Aligorith for yet another API fix!). Also one extra effort to make the use of shapekey animation clearer.
-rw-r--r--animation_animall.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/animation_animall.py b/animation_animall.py
index bf5651b1..1bd863f5 100644
--- a/animation_animall.py
+++ b/animation_animall.py
@@ -128,7 +128,7 @@ class VIEW3D_PT_animall(bpy.types.Panel):
elif Obj.type == 'CURVE':
row.prop(context.window_manager, "key_points")
- #row.prop(context.window_manager, "key_shape")
+ row.prop(context.window_manager, "key_shape")
row = col.row()
row.prop(context.window_manager, "key_radius")
row.prop(context.window_manager, "key_tilt")
@@ -158,6 +158,9 @@ class VIEW3D_PT_animall(bpy.types.Panel):
row.label(ShapeKey.name, icon='SHAPEKEY_DATA')
row.prop(ShapeKey, "value", text="")
row.prop(Obj, "show_only_shape_key", text="")
+ if ShapeKey.value < 1:
+ row = layout.row()
+ row.label('Maybe set "%s" to 1.0?' % ShapeKey.name, icon='INFO')
elif ShapeKey:
row.label('Can not key on Basis Shape', icon='ERROR')
else: