Fix error in rigify property generation
[blender-addons.git] / add_mesh_extra_objects / add_mesh_rocks / __init__.py
blob40c525847af53b0e35ada3b3bde904827f405d6a
1 # Paul "BrikBot" Marshall
2 # Created: July 1, 2011
3 # Last Modified: September 26, 2013
4 # Homepage (blog): http://post.darkarsenic.com/
5 # //blog.darkarsenic.com/
6 # Thanks to Meta-Androco, RickyBlender, Ace Dragon, and PKHG for ideas
7 # and testing.
9 # Coded in IDLE, tested in Blender 2.68a. NumPy Recommended.
10 # Search for "@todo" to quickly find sections that need work.
12 # ##### BEGIN GPL LICENSE BLOCK #####
14 # The Blender Rock Creation tool is for rapid generation of
15 # mesh rocks in Blender.
16 # Copyright (C) 2011 Paul Marshall
18 # This program is free software: you can redistribute it and/or modify
19 # it under the terms of the GNU General Public License as published by
20 # the Free Software Foundation, either version 3 of the License, or
21 # (at your option) any later version.
23 # This program is distributed in the hope that it will be useful,
24 # but WITHOUT ANY WARRANTY; without even the implied warranty of
25 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 # GNU General Public License for more details.
28 # You should have received a copy of the GNU General Public License
29 # along with this program. If not, see <http://www.gnu.org/licenses/>.
31 # ##### END GPL LICENSE BLOCK #####
33 # <pep8 compliant>
35 bl_info = {
36 "name": "Rock Generator",
37 "author": "Paul Marshall (brikbot)",
38 "version": (1, 4),
39 "blender": (2, 80, 0),
40 "location": "View3D > Add > Rock Generator",
41 "description": "Adds a mesh rock to the Add Mesh menu",
42 "doc_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
43 "Scripts/Add_Mesh/Rock_Generator",
44 "tracker_url": "https://developer.blender.org/maniphest/task/edit/form/2/",
45 "category": "Add Mesh",
48 if "bpy" in locals():
49 import importlib
50 importlib.reload(rockgen)
52 else:
53 from . import rockgen
55 import bpy
58 # Register:
59 def register():
60 rockgen.register()
63 def unregister():
64 rockgen.unregister()
67 if __name__ == "__main__":
68 register()