From 61d5b389e2424ff22576cc07b99260f952f6f97b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 11 Feb 2011 01:29:13 +0000 Subject: add in module register calls (first pass, batch replace, will test each addon next). --- io_coat3D/__init__.py | 4 ++++ io_coat3D/coat.py | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'io_coat3D') 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__": -- cgit v1.2.3