Basic events system started.

This commit is contained in:
2025-05-06 11:07:16 -05:00
parent 4ad63b8c41
commit b9f0295722
22 changed files with 325 additions and 103 deletions

View File

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