15 lines
253 B
GDScript
15 lines
253 B
GDScript
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 |