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:
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()