[Bf-extensions-cvs] [b345b0b] master: 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.

Daniel Salazar noreply at git.blender.org
Thu Jan 2 04:59:34 CET 2014


Commit: b345b0bb3b64521ed694ec062b11a8a13c8ffff7
Author: Daniel Salazar
Date:   Wed Jan 1 21:59:26 2014 -0600
https://developer.blender.org/rBAb345b0bb3b64521ed694ec062b11a8a13c8ffff7

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.

===================================================================

M	animation_animall.py

===================================================================

diff --git a/animation_animall.py b/animation_animall.py
index 20e3c62..9060a39 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):



More information about the Bf-extensions-cvs mailing list