Initial Commit

This commit is contained in:
Yusarina
2024-06-12 03:37:46 +01:00
parent c27fe30acd
commit 0f7c46b720
8 changed files with 128 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import bpy
from . import ui
from .core.register import order_classes
def register():
print("Registering Avatar Toolkit")
# Order the classes before registration
order_classes()
# Register the UI classes
ui.register()
def unregister():
print("Unregistering Avatar Toolkit")
# Unregister the UI classes
ui.unregister()