Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
)

gameEditorEnum = (
# ("SM64", "SM64", "Super Mario 64", 0),
("SM64", "SM64", "Super Mario 64", 0),
("OOT", "OOT", "Ocarina Of Time", 1),
("MM", "MM", "Majora's Mask", 4),
("MK64", "MK64", "Mario Kart 64", 3),
Expand Down
15 changes: 15 additions & 0 deletions fast64_internal/hm64/sm64/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from .ghostship_geolayout import (
draw_panel as draw_ghostship_geolayout_panel,
export_armature_from_context as export_ghostship_geolayout_armature,
export_object_from_context as export_ghostship_geolayout_object,
register_scene_props as register_ghostship_geolayout_props,
unregister_scene_props as unregister_ghostship_geolayout_props,
)

__all__ = (
"draw_ghostship_geolayout_panel",
"export_ghostship_geolayout_armature",
"export_ghostship_geolayout_object",
"register_ghostship_geolayout_props",
"unregister_ghostship_geolayout_props",
)
Loading
Loading