2023-09-28 11:34:41 +02:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
2023-09-28 12:54:37 +02:00
|
|
|
from . import (manage_objects, manage_planes, convert_planes)
|
2023-09-28 11:34:41 +02:00
|
|
|
|
|
|
|
modules = (
|
|
|
|
manage_objects,
|
|
|
|
manage_planes,
|
|
|
|
convert_planes
|
|
|
|
)
|
|
|
|
|
|
|
|
# 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()
|