Started cutscene system

This commit is contained in:
2025-01-05 15:30:00 -06:00
parent e74878eb80
commit 0554f5719d
11 changed files with 135 additions and 7 deletions

View File

@@ -1,3 +1,14 @@
class_name Systems extends Node
const ItemSystem = preload("res://scripts/Systems/ItemSystem.gd");
const CutsceneSystem = preload("res://scripts/Systems/CutsceneSystem.gd")
var ITEM = preload("res://scripts/Systems/ItemSystem.gd").new()
var ITEM:ItemSystem;
var CUTSCENE:CutsceneSystem;
func _ready():
ITEM = $Item;
CUTSCENE = $Cutscene;
pass
func _process(delta):
pass