-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path__init__.py
37 lines (31 loc) · 932 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
35
36
37
import bpy
from . import ui_operators
from . import ui
from . import properties
from . import operators
from . import action_operators
bl_info = {
"name": "Action poser",
"description": "Action constraint based rigging",
"author": "Armin Halac",
"blender": (3, 1, 0),
"version": (1, 0, 0),
"category": "Rigging",
"location": "Side Panel (N) -> Rig Tools",
"wiki_url": "https://github.com/Arminando/ActionPoser",
"doc_url": "https://github.com/Arminando/ActionPoser",
}
def register():
from bpy.utils import register_class
properties.register()
operators.register()
action_operators.register()
ui_operators.register()
ui.register()
def unregister():
from bpy.utils import unregister_class
properties.unregister()
operators.unregister()
action_operators.unregister()
ui_operators.unregister()
ui.unregister()