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 'io_coat3D')
-rw-r--r--io_coat3D/__init__.py4
-rw-r--r--io_coat3D/coat.py4
2 files changed, 8 insertions, 0 deletions
diff --git a/io_coat3D/__init__.py b/io_coat3D/__init__.py
index 0a7d5d8f..b6aecccb 100644
--- a/io_coat3D/__init__.py
+++ b/io_coat3D/__init__.py
@@ -46,6 +46,8 @@ from bpy.props import *
def register():
+ bpy.utils.register_module(__name__)
+
bpy.coat3D = dict()
bpy.coat3D['active_coat'] = ''
@@ -276,6 +278,8 @@ def register():
def unregister():
+ bpy.utils.unregister_module(__name__)
+
import bpy
del bpy.types.Object.coat3D
diff --git a/io_coat3D/coat.py b/io_coat3D/coat.py
index 48a2c996..fc989dd6 100644
--- a/io_coat3D/coat.py
+++ b/io_coat3D/coat.py
@@ -519,9 +519,13 @@ class SCENE_OT_deltex(bpy.types.Operator):
return('FINISHED')
def register():
+ bpy.utils.register_module(__name__)
+
pass
def unregister():
+ bpy.utils.unregister_module(__name__)
+
pass
if __name__ == "__main__":