Skip to content

Commit

Permalink
Fix bone location scaling again
Browse files Browse the repository at this point in the history
  • Loading branch information
Chryfi committed Jun 14, 2023
1 parent 416af7d commit 7d214d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mixamo_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def execute(self, context):
if properties.use_human_parent_space:
bone.rotation_quaternion = self.getParentSpace(mixamoBone, 2) @ bone.rotation_quaternion
else:
bone.location = mixamoBone.location
bone.location = mixamoBone.location * properties.mixamo_armature.scale

bone.location[0] *= -1
bone.location[1] *= 1
Expand Down

0 comments on commit 7d214d4

Please sign in to comment.