-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path__init__.py
36 lines (27 loc) · 1.01 KB
/
__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
# noinspection SpellCheckingInspection
rigify_info = {
"name": "Experimental Rigs by Alexander Gavrilov",
"author": "Alexander Gavrilov",
"description":
"Experimental and/or niche rigs made by a Rigify maintainer.\n"
"Includes a BlenRig-like spine, Body IK (knee & elbow IK), jiggles, skin transforms, etc.",
"link": "https://github.com/angavrilov/angavrilov-rigs",
"blender": (4, 0, 0),
}
def _get_classes():
from .rigs.jiggle import cloth_cage
from .rigs.basic import center_of_mass
return [
cloth_cage.MESH_OT_rigify_add_jiggle_cloth_cage,
cloth_cage.MESH_OT_rigify_add_jiggle_shapekey_anchor,
cloth_cage.MESH_OT_rigify_mirror_jiggle_cloth_cage,
center_of_mass.MESH_OT_rigify_add_com_volume_cage,
]
def register():
from bpy.utils import register_class
for cls in _get_classes():
register_class(cls)
def unregister():
from bpy.utils import unregister_class
for cls in _get_classes():
unregister_class(cls)