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 'rigify/legacy/utils.py')
-rw-r--r--rigify/legacy/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rigify/legacy/utils.py b/rigify/legacy/utils.py
index 1f017022..632dcb26 100644
--- a/rigify/legacy/utils.py
+++ b/rigify/legacy/utils.py
@@ -617,7 +617,7 @@ def align_bone_roll(obj, bone1, bone2):
# Check if we rolled in the right direction
x3 = rot_mat @ bone1_e.x_axis
- check = x2 * x3
+ check = x2 @ x3
# If not, reverse
if check < 0.9999: