blob: d35ab907d0d8f2a8954704bff38e7471407bef09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
extends Control
func _ready():
$Button.pressed.connect(_on_start_pressed, ConnectFlags.CONNECT_ONE_SHOT)
$AnimationPlayer.play("default")
func _on_start_pressed():
$AnimationPlayer.play_backwards("default")
await $AnimationPlayer.animation_finished
get_tree().change_scene_to_file("res://game/main.tscn")
|