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 'io_anim_nuke_chan/import_nuke_chan.py')
-rw-r--r--io_anim_nuke_chan/import_nuke_chan.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_anim_nuke_chan/import_nuke_chan.py b/io_anim_nuke_chan/import_nuke_chan.py
index c21265d0..3f9793ab 100644
--- a/io_anim_nuke_chan/import_nuke_chan.py
+++ b/io_anim_nuke_chan/import_nuke_chan.py
@@ -72,12 +72,12 @@ def read_chan(context, filepath, z_up, rot_ord, sensor_width, sensor_height):
mrot_mat.resize_4x4()
# merge the rotation and translation
- m_trans_mat = translation_mat * mrot_mat
+ m_trans_mat = translation_mat @ mrot_mat
# correct the world space
# (nuke's and blenders scene spaces are different)
if z_up:
- m_trans_mat = rot_mat * m_trans_mat
+ m_trans_mat = rot_mat @ m_trans_mat
# break the matrix into a set of the coordinates
trns = m_trans_mat.decompose()