finally completed addon

This commit is contained in:
2026-07-27 01:33:05 +08:00
parent 1714643a81
commit bb3bf11914
19 changed files with 362 additions and 65 deletions
+3 -3
View File
@@ -14,6 +14,7 @@ import os
from bpy.props import FloatProperty, PointerProperty, BoolProperty
from . import rigger_functionality
from . import controlrig_generate
# =========================================================================
# GLOBAL VARIABLES
@@ -289,7 +290,8 @@ class GenerateControlRig(bpy.types.Operator):
bl_label = "Generate Control Rig"
bl_description = "Builds the control rig according to helper placement"
def execute(self, context):
def execute(self, context):
controlrig_generate.generatecontrolrig();
return {'FINISHED'}
# REFRESH BUTTON
@@ -432,7 +434,5 @@ def unregister():
if __name__ == "__main__":
# bpy.context.scene.panel_propert.panel2_g1 = True
# bpy.context.scene.panel_propert.panel3_g1 = False
register()
inspect_scene()