diff --git a/scripts/Cutscene/Event/VisualNovel/TextboxEvent.gd b/scripts/Cutscene/Event/VisualNovel/TextboxEvent.gd new file mode 100644 index 0000000..bd79f40 --- /dev/null +++ b/scripts/Cutscene/Event/VisualNovel/TextboxEvent.gd @@ -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 \ No newline at end of file