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 /object_add_chain.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 'object_add_chain.py')
-rw-r--r--object_add_chain.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/object_add_chain.py b/object_add_chain.py
index 40782725..22f45e79 100644
--- a/object_add_chain.py
+++ b/object_add_chain.py
@@ -134,21 +134,16 @@ class AddChain(bpy.types.Operator):
return {'FINISHED'}
# Register the operator
-menu_func = (lambda self,
- context: self.layout.operator(AddChain.bl_idname,
- text="Chain", icon='PLUGIN'))
+def menu_func(self, context):
+ self.layout.operator(AddChain.bl_idname, text="Chain", icon='PLUGIN')
def register():
- bpy.types.register(AddChain)
-
# Add "Chain" menu to the "Add Mesh" menu.
bpy.types.INFO_MT_mesh_add.append(menu_func)
def unregister():
- bpy.types.unregister(AddChain)
-
# Remove "Chain" menu from the "Add Mesh" menu.
bpy.types.INFO_MT_mesh_add.remove(menu_func)