blob: 8c4f525eb7f82a30cbd7d58a6779b6598c738f86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
extends Node
onready var textreveal = $Textreveal
# Called when the node enters the scene tree for the first time.
func _ready():
textreveal.start()
func _on_Textreveal_finished_reveal():
print("Done")
|