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 'mocap/mocap_constraints.py')
-rw-r--r--mocap/mocap_constraints.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/mocap/mocap_constraints.py b/mocap/mocap_constraints.py
index 4509193c..d263dfad 100644
--- a/mocap/mocap_constraints.py
+++ b/mocap/mocap_constraints.py
@@ -385,13 +385,15 @@ def bakeAllConstraints(obj, s_frame, e_frame, bones):
constraintStrip.frame_end = e_frame
if selectedBones:
# Use bake function from NLA Bake Action operator
- anim_utils.bake_action(s_frame,
- e_frame,
- action=constraintStrip.action,
- only_selected=True,
- do_pose=True,
- do_object=False,
- )
+ anim_utils.bake_action(
+ obj,
+ s_frame,
+ e_frame,
+ action=constraintStrip.action,
+ only_selected=True,
+ do_pose=True,
+ do_object=False,
+ )
if simpleBake:
#Do a "simple" bake, location only, world space only.
locBake(s_frame, e_frame, simpleBake)