[Bf-extensions-cvs] [dded390] master: Fix for error in keyframing lattice points. Thanks Aligorith for the pointer

Daniel Salazar noreply at git.blender.org
Thu Jan 2 01:35:07 CET 2014


Commit: dded3907b84e440fc80e4bb2567e6badedddeac5
Author: Daniel Salazar
Date:   Wed Jan 1 18:34:58 2014 -0600
https://developer.blender.org/rBAdded3907b84e440fc80e4bb2567e6badedddeac5

Fix for error in keyframing lattice points. Thanks Aligorith for the pointer

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

M	animation_animall.py

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

diff --git a/animation_animall.py b/animation_animall.py
index 1bd863f..20e3c62 100644
--- a/animation_animall.py
+++ b/animation_animall.py
@@ -244,7 +244,7 @@ class ANIM_OT_insert_keyframe_animall(bpy.types.Operator):
                         
             if context.window_manager.key_points:
                 for Point in Data.points:
-                    Point.keyframe_insert('co')
+                    Point.keyframe_insert('co_deform')
             
             if Mode:
                 bpy.ops.object.editmode_toggle()
@@ -381,7 +381,7 @@ class ANIM_OT_delete_keyframe_animall(bpy.types.Operator):
                         
             if context.window_manager.key_points:
                 for Point in Data.points:
-                    Point.keyframe_delete('co')
+                    Point.keyframe_delete('co_deform')
             
             if Mode:
                 bpy.ops.object.editmode_toggle()



More information about the Bf-extensions-cvs mailing list