DuckRun/code/GUI/restartschild.gd

21 lines
454 B
GDScript3
Raw Normal View History

2024-10-01 15:56:30 +02:00
extends Sprite2D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
global_position.y = -80
func _process(_delta: float) -> void:
global_position.x = get_viewport().get_visible_rect().size.x * 0.5
func _on_duck_gameover() -> void:
$AnimationPlayer.play("in")
show()
func _on_restart_pressed() -> void:
$"../..".start_game()
$AnimationPlayer.play("out")
await $AnimationPlayer.animation_finished
hide()