Some scene stuff

This commit is contained in:
2025-01-18 21:28:17 -06:00
parent 0f61906955
commit a80ca4b51d
74 changed files with 3752 additions and 28 deletions

View File

@@ -0,0 +1,10 @@
class_name RootScene extends Node3D
const Systems = preload("res://scripts/System/Systems.gd");
const SceneSystem = preload("res://scripts/System/SceneSystem.gd");
var systems:Systems;
func _ready() -> void:
print("Game started");
systems = $Systems;
systems.SCENE.setScene(SceneSystem.DawnScene.OVERWORLD);