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:
authorCampbell Barton <ideasman42@gmail.com>2010-08-02 15:53:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-02 15:53:48 +0400
commit3148c0f203ba23bead40e4e037bcc9a1eb27278b (patch)
tree1e91d053095e10a4b7afa1c392bb7525d3967cbe /space_view3d_align_tools.py
parentd566152b0372d1d29578c3353f6a4d5ff3af4d63 (diff)
update addons to work with new register/unregister method,
These scritps still need changes related to parent classes - mesh_surface_sketch.py - render_renderfarmfi.py - space_view3d_align_tools.py - object_cloud_gen.py
Diffstat (limited to 'space_view3d_align_tools.py')
-rw-r--r--space_view3d_align_tools.py31
1 files changed, 2 insertions, 29 deletions
diff --git a/space_view3d_align_tools.py b/space_view3d_align_tools.py
index 95f8843c..5ce7bdbb 100644
--- a/space_view3d_align_tools.py
+++ b/space_view3d_align_tools.py
@@ -325,37 +325,10 @@ class AlignScaleZOperator(bpy.types.Operator):
## registring
def register():
- bpy.types.register(AlignUi)
- bpy.types.register(AlignOperator)
- bpy.types.register(AlignLocationOperator)
- bpy.types.register(AlignLocationXOperator)
- bpy.types.register(AlignLocationYOperator)
- bpy.types.register(AlignLocationZOperator)
- bpy.types.register(AlignRotationOperator)
- bpy.types.register(AlignRotationXOperator)
- bpy.types.register(AlignRotationYOperator)
- bpy.types.register(AlignRotationZOperator)
- bpy.types.register(AlignScaleOperator)
- bpy.types.register(AlignScaleXOperator)
- bpy.types.register(AlignScaleYOperator)
- bpy.types.register(AlignScaleZOperator)
-
+ pass
def unregister():
- bpy.types.unregister(AlignUi)
- bpy.types.unregister(AlignOperator)
- bpy.types.unregister(AlignLocationOperator)
- bpy.types.unregister(AlignLocationXOperator)
- bpy.types.unregister(AlignLocationYOperator)
- bpy.types.unregister(AlignLocationZOperator)
- bpy.types.unregister(AlignRotationOperator)
- bpy.types.unregister(AlignRotationXOperator)
- bpy.types.unregister(AlignRotationYOperator)
- bpy.types.unregister(AlignRotationZOperator)
- bpy.types.unregister(AlignScaleOperator)
- bpy.types.unregister(AlignScaleXOperator)
- bpy.types.unregister(AlignScaleYOperator)
- bpy.types.unregister(AlignScaleZOperator)
+ pass
if __name__ == "__main__":
register()