15 lines
208 B
Python
15 lines
208 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()
|