-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
41 lines (33 loc) · 851 Bytes
/
__init__.py
File metadata and controls
41 lines (33 loc) · 851 Bytes
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
35
36
37
38
39
40
41
bl_info = {
"name": "Graph Monkey",
"author": "Pluglug",
"version": (0, 10, 0),
"blender": (2, 80, 0),
"location": "Graph Editor",
"description": "Animation workflow toolkit for Graph Editor. Keyboard-driven keyframe editing.",
"warning": "Bananas required",
"doc_url": "https://github.com/Pluglug/graph_monkey",
"category": "Animation",
"license": "GPL",
}
use_reload = "addon" in locals()
if use_reload:
import importlib
importlib.reload(locals()["addon"])
del importlib
from . import addon
addon.init_addon(
module_patterns=[
"constants",
"preferences",
"keymap_manager",
"operators.*",
"ui.*",
"utils.*",
],
use_reload=use_reload,
)
def register():
addon.register_modules()
def unregister():
addon.unregister_modules()