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 04:34:58 +0400
committerDaniel Salazar <zanqdo@gmail.com>2014-01-02 04:34:58 +0400
commitdded3907b84e440fc80e4bb2567e6badedddeac5 (patch)
tree13384cbc6bcf3e62a127cc5ba099141907193f1e /animation_animall.py
parent39790a27e0a1567022ac405a1ffdb11ac6ebc49a (diff)
Fix for error in keyframing lattice points. Thanks Aligorith for the pointer
Diffstat (limited to 'animation_animall.py')
-rw-r--r--animation_animall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/animation_animall.py b/animation_animall.py
index 1bd863f5..20e3c62f 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()