Fix Object > Animation > Bake Action
This commit is contained in:
@@ -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:
|
||||
|
Reference in New Issue
Block a user