blob: ad898f21806395a0c41b3a84ce253fd6f3f3c4fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
extends Node
# Called when the node enters the scene tree for the first time.
func _ready():
$Continue.visible = false
$TextReveal.start()
func _on_TextReveal_finished_reveal():
$Continue.visible = true
func _on_Button_on_click():
get_tree().change_scene("res://scenes/levels/base_level.tscn")
func _on_Skip_on_click():
get_tree().change_scene("res://scenes/levels/base_level.tscn")
|