forked from scaredyfish/blender-rhubarb-lipsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
39 lines (30 loc) · 1.08 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
37
38
39
__version__ = '3.0.1'
bl_info = {
'name': 'Rhubarb Lipsync',
'author': 'Addon by Andrew Charlton, includes Rhubarb Lip Sync by Daniel S. Wolf',
'version': (3, 0, 1),
'blender': (2, 80, 0),
'location': 'Properties > Armature',
'description': 'Integrate Rhubarb Lipsync into Blender',
'wiki_url': 'https://github.com/adcharlton/blender-rhubarb-lipsync',
'tracker_url': 'https://github.com/adcharlton/blender-rhubarb-lipsync/issues',
'support': 'COMMUNITY',
'category': 'Animation',
}
if 'bpy' in locals():
import importlib
if 'op_blender_rhubarb' in locals():
importlib.reload(op_blender_rhubarb)
importlib.reload(pnl_blender_rhubarb)
importlib.reload(prefs_blender_rhubarb)
else:
from . import op_blender_rhubarb, pnl_blender_rhubarb, prefs_blender_rhubarb
import bpy
def register():
op_blender_rhubarb.register()
pnl_blender_rhubarb.register()
prefs_blender_rhubarb.register()
def unregister():
op_blender_rhubarb.unregister()
pnl_blender_rhubarb.unregister()
prefs_blender_rhubarb.unregister()