~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to release/scripts/addons/add_mesh_BoltFactory/__init__.py

  • Committer: Reinhard Tartler
  • Date: 2014-05-31 01:50:05 UTC
  • mfrom: (14.2.27 sid)
  • Revision ID: siretart@tauware.de-20140531015005-ml6druahuj82nsav
mergeĀ fromĀ debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
    "blender": (2, 63, 0),
24
24
    "location": "View3D > Add > Mesh",
25
25
    "description": "Add a bolt or nut",
26
 
    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"\
 
26
    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
27
27
        "Scripts/Add_Mesh/BoltFactory",
28
 
    "tracker_url": "https://projects.blender.org/tracker/index.php?"\
29
 
        "func=detail&aid=22842",
 
28
    "tracker_url": "https://developer.blender.org/T22842",
30
29
    "category": "Add Mesh"}
31
30
 
 
31
 
32
32
if "bpy" in locals():
33
33
    import imp
34
34
    imp.reload(Boltfactory)
55
55
 
56
56
    bpy.types.INFO_MT_mesh_add.remove(add_mesh_bolt_button)
57
57
    #bpy.types.VIEW3D_PT_tools_objectmode.remove(add_mesh_bolt_button) #just for testing
58
 
    
 
58
 
59
59
if __name__ == "__main__":
60
60
    register()