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/export_nuke_chan.py')
-rw-r--r--io_anim_nuke_chan/export_nuke_chan.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_anim_nuke_chan/export_nuke_chan.py b/io_anim_nuke_chan/export_nuke_chan.py
index 034ce6d9..d1c9a9b4 100644
--- a/io_anim_nuke_chan/export_nuke_chan.py
+++ b/io_anim_nuke_chan/export_nuke_chan.py
@@ -55,7 +55,7 @@ def save_chan(context, filepath, y_up, rot_ord):
# if the setting is proper use the rotation matrix
# to flip the Z and Y axis
if y_up:
- mat = rot_mat * mat
+ mat = rot_mat @ mat
# create the first component of a new line, the frame number
fw("%i\t" % frame)