Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'object_fracture/__init__.py')
-rw-r--r--object_fracture/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/object_fracture/__init__.py b/object_fracture/__init__.py
index b678724b..3379d75f 100644
--- a/object_fracture/__init__.py
+++ b/object_fracture/__init__.py
@@ -66,11 +66,15 @@ def menu_func(self, context):
def register():
+ bpy.utils.register_module(__name__)
+
# Add the "add fracture objects" menu to the "Add" menu
space_info.INFO_MT_add.append(menu_func)
def unregister():
+ bpy.utils.unregister_module(__name__)
+
# Remove "add fracture objects" menu from the "Add" menu.
space_info.INFO_MT_add.remove(menu_func)