object_collection_manager: use GPL headers for all files
[blender-addons.git] / add_camera_rigs / __init__.py
blob9d296e6ceee5dffa71c48b279c9e611181e93fed
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 #####
20 bl_info = {
21 "name": "Add Camera Rigs",
22 "author": "Wayne Dixon, Brian Raschko, Kris Wittig",
23 "version": (1, 4, 1),
24 "blender": (2, 80, 0),
25 "location": "View3D > Add > Camera > Dolly or Crane Rig",
26 "description": "Adds a Camera Rig with UI",
27 "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
28 "camera/camera_rigs.html",
29 "tracker_url": "https://github.com/waylow/add_camera_rigs/issues",
30 "category": "Camera",
33 import bpy
34 import os
36 from . import build_rigs
37 from . import operators
38 from . import ui_panels
39 from . import prefs
40 from . import composition_guides_menu
42 # =========================================================================
43 # Registration:
44 # =========================================================================
46 def register():
47 build_rigs.register()
48 operators.register()
49 ui_panels.register()
50 prefs.register()
51 composition_guides_menu.register()
54 def unregister():
55 build_rigs.unregister()
56 operators.unregister()
57 ui_panels.unregister()
58 prefs.unregister()
59 composition_guides_menu.unregister()
62 if __name__ == "__main__":
63 register()