Skip to content

Commit 80d46f6

Browse files
committed
geolayout writer
1 parent 3eed741 commit 80d46f6

5 files changed

Lines changed: 538 additions & 4 deletions

File tree

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
)
8080

8181
gameEditorEnum = (
82-
# ("SM64", "SM64", "Super Mario 64", 0),
82+
("SM64", "SM64", "Super Mario 64", 0),
8383
("OOT", "OOT", "Ocarina Of Time", 1),
8484
("MM", "MM", "Majora's Mask", 4),
8585
("MK64", "MK64", "Mario Kart 64", 3),
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from .ghostship_geolayout import (
2+
draw_panel as draw_ghostship_geolayout_panel,
3+
export_armature_from_context as export_ghostship_geolayout_armature,
4+
export_object_from_context as export_ghostship_geolayout_object,
5+
register_scene_props as register_ghostship_geolayout_props,
6+
unregister_scene_props as unregister_ghostship_geolayout_props,
7+
)
8+
9+
__all__ = (
10+
"draw_ghostship_geolayout_panel",
11+
"export_ghostship_geolayout_armature",
12+
"export_ghostship_geolayout_object",
13+
"register_ghostship_geolayout_props",
14+
"unregister_ghostship_geolayout_props",
15+
)

0 commit comments

Comments
 (0)