-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.py
37 lines (28 loc) · 1005 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# ArToKi-Energy.py (c) 2015 Thierry Maes (tmaes)
from bpy.utils import register_class, unregister_class
from .panels.report import ARTOKI_PT_EnergyReport
from .panels.deperditions import ARTOKI_PT_EnergyDeperditions
from .panels.mana import ARTOKI_PT_create_material
from .operators.export_ot_html import EXPORT_OT_HTML
from .operators.export_ot_pace import EXPORT_OT_PACE
from .operators.import_ot_map import IMPORT_OT_MAP
from .operators.object_ot_open_preferences import OBJECT_OT_OpenPreferences
from .operators.object_ot_create_material import ARTOKI_OT_create_material
from .preferences import Preferences
classes = (
ARTOKI_PT_EnergyReport,
ARTOKI_PT_EnergyDeperditions,
EXPORT_OT_HTML,
EXPORT_OT_PACE,
IMPORT_OT_MAP,
ARTOKI_PT_create_material,
ARTOKI_OT_create_material,
OBJECT_OT_OpenPreferences,
Preferences
)
def register():
for cls in classes:
register_class(cls)
def unregister():
for cls in classes:
unregister_class(cls)