Add VN textbox (needs some more bug fixing)

This commit is contained in:
2025-01-07 22:14:17 -06:00
parent 93c740f1ff
commit 75082e0598
10 changed files with 191 additions and 9 deletions

View File

@@ -2,16 +2,18 @@ class_name Systems extends Node
const ItemSystem = preload("res://scripts/System/ItemSystem.gd");
const CutsceneSystem = preload("res://scripts/System/CutsceneSystem.gd");
const QuestSystem = preload("res://scripts/System/QuestSystem.gd");
const VNSystem = preload("res://scripts/System/VNSystem.gd");
var ITEM:ItemSystem;
var CUTSCENE:CutsceneSystem;
var QUEST:QuestSystem;
var VN:VNSystem;
func _ready():
ITEM = $Item;
CUTSCENE = $Cutscene;
QUEST = $Quest;
pass
VN = $VN;
func _process(delta):
pass