Skip to content

Commit 2cddd0f

Browse files
committed
minor: invert animation tools and quat2rot converter
1 parent b787721 commit 2cddd0f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ui.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1240,8 +1240,6 @@ def execute(self, context):
12401240

12411241
def register():
12421242

1243-
rot_mode.register()
1244-
12451243
bpy.utils.register_class(DATA_OT_rigify_add_bone_groups)
12461244
bpy.utils.register_class(DATA_OT_rigify_use_standard_colors)
12471245
bpy.utils.register_class(DATA_OT_rigify_apply_selection_colors)
@@ -1272,11 +1270,10 @@ def register():
12721270
bpy.utils.register_class(OBJECT_OT_ClearAnimation)
12731271
bpy.utils.register_class(OBJECT_OT_Rot2Pole)
12741272

1273+
rot_mode.register()
12751274

12761275
def unregister():
12771276

1278-
rot_mode.unregister()
1279-
12801277
bpy.utils.unregister_class(DATA_OT_rigify_add_bone_groups)
12811278
bpy.utils.unregister_class(DATA_OT_rigify_use_standard_colors)
12821279
bpy.utils.unregister_class(DATA_OT_rigify_apply_selection_colors)
@@ -1306,3 +1303,6 @@ def unregister():
13061303
bpy.utils.unregister_class(OBJECT_OT_TransferIKtoFK)
13071304
bpy.utils.unregister_class(OBJECT_OT_ClearAnimation)
13081305
bpy.utils.unregister_class(OBJECT_OT_Rot2Pole)
1306+
1307+
rot_mode.unregister()
1308+

0 commit comments

Comments
 (0)