blob: b391917c8a647dfa44bc522b16f50bc38f98ed90 (
plain)
1
2
3
4
5
6
7
8
9
10
|
extends Node2D
onready var pause_menu = $PauseMenu
# Called when the node enters the scene tree for the first time.
func _ready():
$Control/TextReveal.start()
func _on_MenuButton_on_click():
pause_menu.pause()
|