background_plane_manager/operators/__init__.py

24 lines
439 B
Python
Raw Permalink Normal View History

2023-09-28 11:34:41 +02:00
# SPDX-License-Identifier: GPL-2.0-or-later
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()