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:
authorNBurn <7nburn@gmail.com>2019-06-28 23:58:16 +0300
committerNBurn <7nburn@gmail.com>2019-06-28 23:58:16 +0300
commitae3237c4c5e6ba05c44fad5edd5fcd7e0b34b1a8 (patch)
tree2de6ac340815cc799a96baccb8b2ad82db5cb08e /io_anim_nuke_chan
parentf4275a1dc204440f6631db65bf3ba1b494bd4786 (diff)
io_anim_nuke Fix issue with property assignment
Diffstat (limited to 'io_anim_nuke_chan')
-rw-r--r--io_anim_nuke_chan/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_anim_nuke_chan/__init__.py b/io_anim_nuke_chan/__init__.py
index 48da8b1d..fe5f4738 100644
--- a/io_anim_nuke_chan/__init__.py
+++ b/io_anim_nuke_chan/__init__.py
@@ -76,7 +76,7 @@ class ImportChan(Operator, ImportHelper):
filter_glob: StringProperty(default="*.chan", options={'HIDDEN'})
- rotation_order = rotation_order
+ rotation_order: rotation_order
z_up: BoolProperty(
name="Make Z up",
description="Switch the Y and Z axis",
@@ -118,7 +118,7 @@ class ExportChan(Operator, ExportHelper):
name="Make Y up",
description="Switch the Y and Z axis",
default=True)
- rotation_order = rotation_order
+ rotation_order: rotation_order
@classmethod
def poll(cls, context):