2022-12-24 15:30:32 +01:00
|
|
|
|
|
|
|
from asset_library.collection import (
|
|
|
|
gui,
|
|
|
|
operators,
|
|
|
|
keymaps,
|
2022-12-28 00:09:57 +01:00
|
|
|
#build_collection_blends,
|
|
|
|
#create_collection_library,
|
|
|
|
)
|
2022-12-24 15:30:32 +01:00
|
|
|
|
|
|
|
if 'bpy' in locals():
|
|
|
|
import importlib
|
|
|
|
|
|
|
|
importlib.reload(gui)
|
|
|
|
importlib.reload(operators)
|
|
|
|
importlib.reload(keymaps)
|
2022-12-28 00:09:57 +01:00
|
|
|
#importlib.reload(build_collection_blends)
|
|
|
|
#importlib.reload(create_collection_library)
|
2022-12-24 15:30:32 +01:00
|
|
|
|
2022-12-30 23:36:09 +01:00
|
|
|
import bpy
|
2022-12-24 15:30:32 +01:00
|
|
|
|
|
|
|
def register():
|
|
|
|
operators.register()
|
|
|
|
keymaps.register()
|
|
|
|
|
|
|
|
def unregister():
|
|
|
|
operators.unregister()
|
|
|
|
keymaps.unregister()
|