Fixed UI system

This commit is contained in:
2025-05-06 16:08:46 -05:00
parent b0d9106772
commit 85a7ed99bf
44 changed files with 158 additions and 87 deletions

View File

@@ -0,0 +1,11 @@
class_name EventTextbox extends "res://scripts/Event/Event.gd"
# @export var text:Array[String] = [ "Hello Text" ];
@export_multiline var text:String = "Hello Text"
func start() -> void:
super.start()
VN.getTextbox().setText(self.text);
func isDone() -> bool:
return super.isDone() && VN.getTextbox().isClosed;