Sun position: remove unused prop in HDRI mode
[blender-addons.git] / add_mesh_BoltFactory / __init__.py
blob34833a4960221a80209a4a9bace47fc64ab0ec86
1 # ##### BEGIN GPL LICENSE BLOCK #####
3 # This program is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU General Public License
5 # as published by the Free Software Foundation; either version 2
6 # of the License, or (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software Foundation,
15 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 # ##### END GPL LICENSE BLOCK #####
19 bl_info = {
20 "name": "BoltFactory",
21 "author": "Aaron Keith",
22 "version": (0, 4, 0),
23 "blender": (2, 80, 0),
24 "location": "View3D > Add > Mesh",
25 "description": "Add a bolt or nut",
26 "doc_url": "{BLENDER_MANUAL_URL}/addons/add_mesh/boltfactory.html",
27 "category": "Add Mesh",
31 if "bpy" in locals():
32 import importlib
33 importlib.reload(Boltfactory)
34 importlib.reload(createMesh)
35 else:
36 from . import Boltfactory
37 from . import createMesh
39 import bpy
42 # ### REGISTER ###
46 def register():
47 Boltfactory.register()
51 def unregister():
52 Boltfactory.unregister()
55 if __name__ == "__main__":
56 register()