Skip to content

Commit

Permalink
move data outside oot submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
Yanis002 committed Jan 5, 2025
1 parent 179596f commit bd4bc84
Show file tree
Hide file tree
Showing 12 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fast64_internal/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class GameData:
def __init__(self, game_editor_mode: Optional[str] = None):
from .oot.data import OoT_Data
from .data.oot import OoT_Data

self.z64 = OoT_Data()

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion fast64_internal/oot/oot_constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .data import OoT_Data
from ..data.oot import OoT_Data

ootData = OoT_Data()

Expand Down
2 changes: 1 addition & 1 deletion fast64_internal/oot/oot_upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import bpy
from bpy.types import Object, CollectionProperty
from ..utility import PluginError
from .data import OoT_ObjectData
from ..data.oot import OoT_ObjectData
from .oot_utility import getEvalParams, get_actor_prop_from_obj
from .oot_constants import ootData
from .cutscene.constants import ootEnumCSMotionCamMode
Expand Down

0 comments on commit bd4bc84

Please sign in to comment.