14 lines
213 B
Python
14 lines
213 B
Python
|
|
||
|
from asset_library.pose import (
|
||
|
operators)
|
||
|
|
||
|
if 'bpy' in locals():
|
||
|
import importlib
|
||
|
|
||
|
importlib.reload(operators)
|
||
|
|
||
|
def register():
|
||
|
operators.register()
|
||
|
|
||
|
def unregister():
|
||
|
operators.unregister()
|