Initial commit

This commit is contained in:
Tools
2024-05-04 16:18:49 +02:00
commit 332bbe2c86
32 changed files with 1876 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
import bpy
bl_info = {
'name': 'Addon Name',
'description': 'Add your description',
'author': 'Moderlab, Aurelien Vaillant, Nicolas Salles, Jeremy Duchesne',
'version': (0, 0, 0),
'blender': (3, 0, 0),
'doc_url': "",
'tracker_url': "",
'support': "COMMUNITY",
'category': 'Moderlab',
}
modules_class = [
# Main Property
]
def register():
for cls in modules_class:
bpy.utils.register_class(cls)
def unregister():
for cls in reversed(modules_class):
bpy.utils.unregister_class(cls)
if __name__ == "__main__":
register()