scene stuff

This commit is contained in:
2025-05-05 19:27:19 -05:00
parent 7106469bd1
commit 43487bb448
11 changed files with 110 additions and 8 deletions

View File

@@ -7,6 +7,7 @@ const PauseSystem = preload("res://scripts/System/PauseSystem.gd");
const BattleSystem = preload("res://scripts/System/BattleSystem.gd");
const CookingSystem = preload("res://scripts/System/CookingSystem.gd");
const SceneSystem = preload("res://scripts/System/SceneSystem.gd");
const OverworldSystem = preload("res://scripts/System/OverworldSystem.gd");
var ITEM:ItemSystem;
var CUTSCENE:CutsceneSystem;
@@ -16,6 +17,7 @@ var PAUSE:PauseSystem;
var BATTLE:BattleSystem;
var COOKING:CookingSystem;
var SCENE:SceneSystem;
var OVERWORLD:OverworldSystem;
func _ready():
ITEM = $Item;
@@ -26,6 +28,4 @@ func _ready():
BATTLE = $Battle;
COOKING = $Cooking;
SCENE = $Scene;
func _process(delta):
pass
OVERWORLD = $Overworld;