From caf89c3de16993a8153281ecf5919b40e2fff069 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Thu, 14 Feb 2019 13:51:14 +0000 Subject: Fix Object > Animation > Bake Action --- release/scripts/modules/bpy_extras/anim_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'release/scripts') diff --git a/release/scripts/modules/bpy_extras/anim_utils.py b/release/scripts/modules/bpy_extras/anim_utils.py index 970512833b4..2894bab69c9 100644 --- a/release/scripts/modules/bpy_extras/anim_utils.py +++ b/release/scripts/modules/bpy_extras/anim_utils.py @@ -187,7 +187,7 @@ def bake_action_iter( parent = obj.parent matrix = obj.matrix_basis if parent: - return parent.matrix_world * matrix + return parent.matrix_world @ matrix else: return matrix.copy() else: @@ -196,7 +196,7 @@ def bake_action_iter( parent = obj.parent matrix = obj.matrix_world if parent: - return parent.matrix_world.inverted_safe() * matrix + return parent.matrix_world.inverted_safe() @ matrix else: return matrix.copy() else: -- cgit v1.2.3