VN textbox event

This commit is contained in:
2025-01-05 21:28:15 -06:00
parent 4e52d1383b
commit e0e6945cab

View File

@@ -0,0 +1,15 @@
class_name TextboxEvent extends "res://scripts/Cutscene/CutsceneEvent.gd"
var text:string;
func _init(
text:string
) -> void:
super._init();
self.text = text;
func start() -> void:
print("He can say ", text);
func isDone() -> bool:
return false