01f8363e07
- This is the start of the translations system, does not yet work as I can't seem to get it to swap languages, I too tired today to fix it but it's a start. - It also adds properties registration as well.
32 lines
935 B
Python
32 lines
935 B
Python
if "bpy" not in locals():
|
|
import bpy
|
|
from . import ui
|
|
from . import core
|
|
from . import functions
|
|
from .core import register
|
|
from .core.register import __bl_ordered_classes
|
|
from .core import properties
|
|
else:
|
|
import importlib
|
|
importlib.reload(ui)
|
|
importlib.reload(core)
|
|
importlib.reload(functions)
|
|
importlib.reload(properties)
|
|
|
|
def register():
|
|
print("Registering Avatar Toolkit")
|
|
properties.register()
|
|
core.register.order_classes()
|
|
core.register.register_properties()
|
|
for cls in core.register.__bl_ordered_classes:
|
|
print("registering " + str(cls))
|
|
bpy.utils.register_class(cls)
|
|
|
|
def unregister():
|
|
print("Unregistering Avatar Toolkit")
|
|
for cls in reversed(core.register.__bl_ordered_classes):
|
|
bpy.utils.unregister_class(cls)
|
|
print("unregistering " + str(cls))
|
|
core.register.unregister_properties()
|
|
properties.unregister()
|