-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
34 lines (24 loc) · 825 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# SPDX-License-Identifier: GPL-2.0-or-later
from . import build_hierarchy
bl_info = {
"name": "Add Camera Hierarchy",
"author": "Marco Frisan",
"version": (0, 0, 1),
"blender": (2, 80, 0),
"location": "View3D > Add > Camera > Dolly Hierarchy",
"description": "Adds a Camera Hierarchy",
# "doc_url": "",
# "tracker_url": "",
"category": "Camera",
}
# =========================================================================
# Registration:
# =========================================================================
def register():
build_hierarchy.register()
def unregister():
build_hierarchy.unregister()
# This allows you to run the script directly from Blender's Text editor
# to test the add-on without having to install it.
if __name__ == "__main__":
register()