11 lines
313 B
GDScript
11 lines
313 B
GDScript
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);
|