diff --git a/fast64_internal/sm64/animation/__init__.py b/fast64_internal/sm64/animation/__init__.py index fabce725b..ac8ac5057 100644 --- a/fast64_internal/sm64/animation/__init__.py +++ b/fast64_internal/sm64/animation/__init__.py @@ -1,3 +1,12 @@ -from .operators import sm64_anim_operator_register, sm64_anim_operator_unregister -from .properties import sm64_anim_properties_register, sm64_anim_properties_unregister -from .panels import sm64_anim_panel_register, sm64_anim_panel_unregister +from .operators import ( + sm64_anim_operator_register, + sm64_anim_operator_unregister, +) +from .properties import ( + sm64_anim_properties_register, + sm64_anim_properties_unregister, +) +from .panels import ( + sm64_anim_panel_register, + sm64_anim_panel_unregister, +) diff --git a/fast64_internal/sm64/animation/classes.py b/fast64_internal/sm64/animation/classes.py index 7558f40af..ccb45317e 100644 --- a/fast64_internal/sm64/animation/classes.py +++ b/fast64_internal/sm64/animation/classes.py @@ -343,7 +343,7 @@ def toAction(self, action): for i in range(len(self.headers) - 1): actionProps.header_variants.add() - + for header, header_props in zip(self.headers, actionProps.get_headers()): header.toHeaderProps(action, header_props) diff --git a/fast64_internal/sm64/animation/panels.py b/fast64_internal/sm64/animation/panels.py index 560f5401e..c0c3986f9 100644 --- a/fast64_internal/sm64/animation/panels.py +++ b/fast64_internal/sm64/animation/panels.py @@ -3,6 +3,7 @@ from ...panels import SM64_Panel + class SM64_ExportAnimPanel(SM64_Panel): bl_idname = "SM64_PT_export_anim" bl_label = "SM64 Animation Exporting"