23 lines
375 B
Python
23 lines
375 B
Python
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
from . import (ui_list, panels)
|
||
|
|
||
|
modules = (
|
||
|
ui_list,
|
||
|
panels
|
||
|
)
|
||
|
|
||
|
# if 'bpy' in locals():
|
||
|
# import importlib
|
||
|
# for mod in modules:
|
||
|
# importlib.reload(mod)
|
||
|
|
||
|
import bpy
|
||
|
|
||
|
def register():
|
||
|
for mod in modules:
|
||
|
mod.register()
|
||
|
|
||
|
def unregister():
|
||
|
for mod in reversed(modules):
|
||
|
mod.unregister()
|