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 07:59:26 +0400
committerDaniel Salazar <zanqdo@gmail.com>2014-01-02 07:59:26 +0400
commitb345b0bb3b64521ed694ec062b11a8a13c8ffff7 (patch)
tree432d616db2680873e94459318449376c9656c52a /animation_animall.py
parentdded3907b84e440fc80e4bb2567e6badedddeac5 (diff)
AnimAll: Adding info message for preventing people to add keyframes for Shape and Points at the same time. Will not disable it because maybe there's a valid use.
Diffstat (limited to 'animation_animall.py')
-rw-r--r--animation_animall.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/animation_animall.py b/animation_animall.py
index 20e3c62f..9060a39f 100644
--- a/animation_animall.py
+++ b/animation_animall.py
@@ -165,6 +165,10 @@ class VIEW3D_PT_animall(bpy.types.Panel):
row.label('Can not key on Basis Shape', icon='ERROR')
else:
row.label('No active Shape Key', icon='ERROR')
+
+ if context.window_manager.key_points and context.window_manager.key_shape:
+ row = layout.row()
+ row.label('"Points" and "Shape" are redundant?', icon='INFO')
class ANIM_OT_insert_keyframe_animall(bpy.types.Operator):