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.MAIN_MENU);