diff options
Diffstat (limited to 'scenes/introduction.gd')
| -rw-r--r-- | scenes/introduction.gd | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scenes/introduction.gd b/scenes/introduction.gd new file mode 100644 index 0000000..09692b0 --- /dev/null +++ b/scenes/introduction.gd @@ -0,0 +1,11 @@ +extends CanvasLayer + +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(): + pass |
