Sun position: remove unused prop in HDRI mode
[blender-addons.git] / add_camera_rigs / __init__.py
blob7f4accee82f55c5bfcfcb504d17af83ac756aed0
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": "Add Camera Rigs",
21 "author": "Wayne Dixon, Brian Raschko, Kris Wittig, Damien Picard, Flavio Perez",
22 "version": (1, 4, 4),
23 "blender": (2, 80, 0),
24 "location": "View3D > Add > Camera > Dolly or Crane Rig",
25 "description": "Adds a Camera Rig with UI",
26 "doc_url": "{BLENDER_MANUAL_URL}/addons/camera/camera_rigs.html",
27 "tracker_url": "https://github.com/waylow/add_camera_rigs/issues",
28 "category": "Camera",
31 import bpy
32 import os
34 from . import build_rigs
35 from . import operators
36 from . import ui_panels
37 from . import prefs
38 from . import composition_guides_menu
40 # =========================================================================
41 # Registration:
42 # =========================================================================
44 def register():
45 build_rigs.register()
46 operators.register()
47 ui_panels.register()
48 prefs.register()
49 composition_guides_menu.register()
52 def unregister():
53 build_rigs.unregister()
54 operators.unregister()
55 ui_panels.unregister()
56 prefs.unregister()
57 composition_guides_menu.unregister()
60 if __name__ == "__main__":
61 register()