Files
puzzle-quest/scenes/UI/ending.gd
T

10 lines
202 B
GDScript
Raw Normal View History

2021-05-29 21:09:10 +02:00
extends CenterContainer
func _ready():
print("[ending_#ready]")
$AudioStreamPlayer.play()
func _on_Timer_timeout():
print("[ending#_on_Timer_timeout]")
Global.goto_scene("res://scenes/main.tscn")