2022-12-24 15:30:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
from asset_library.common import file_utils
|
|
|
|
from asset_library.common import functions
|
|
|
|
from asset_library.common import synchronize
|
|
|
|
from asset_library.common import template
|
2023-05-10 09:59:07 +02:00
|
|
|
from asset_library.common import catalog
|
2022-12-24 15:30:32 +01:00
|
|
|
|
|
|
|
if 'bpy' in locals():
|
|
|
|
import importlib
|
|
|
|
|
|
|
|
importlib.reload(file_utils)
|
|
|
|
importlib.reload(functions)
|
|
|
|
importlib.reload(synchronize)
|
|
|
|
importlib.reload(template)
|
2023-05-10 09:59:07 +02:00
|
|
|
importlib.reload(catalog)
|
2022-12-24 15:30:32 +01:00
|
|
|
|
2023-05-10 09:59:07 +02:00
|
|
|
import bpy
|