From ae3237c4c5e6ba05c44fad5edd5fcd7e0b34b1a8 Mon Sep 17 00:00:00 2001 From: NBurn <7nburn@gmail.com> Date: Fri, 28 Jun 2019 16:58:16 -0400 Subject: [PATCH] io_anim_nuke Fix issue with property assignment --- io_anim_nuke_chan/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io_anim_nuke_chan/__init__.py b/io_anim_nuke_chan/__init__.py index 48da8b1d0..fe5f4738a 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): -- GitLab