armory/blender/arm/lightmapper/preferences/__init__.py

16 lines
365 B
Python
Raw Normal View History

2020-08-23 23:11:49 +02:00
import bpy
from bpy.utils import register_class, unregister_class
from . import addon_preferences
#from . import build, clean, explore, encode, installopencv
classes = [
addon_preferences.TLM_AddonPreferences
]
def register():
for cls in classes:
register_class(cls)
def unregister():
for cls in classes:
unregister_class(cls)