DuckRun/code/GUI/startschild.gd
2024-10-03 21:12:20 +02:00

25 lines
586 B
GDScript

extends TextureRect
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
$AnimationPlayer.play_backwards("out-in")
show()
func _process(_delta: float) -> void:
global_position.x = get_viewport().get_visible_rect().size.x -100
$Logo.global_position.x = 0
func _on_start_pressed() -> void:
$"../..".start_game()
$AnimationPlayer.play("out-in")
await $AnimationPlayer.animation_finished
hide()
func _on_settings_pressed() -> void:
$AnimationPlayer.play("out-in")
await $AnimationPlayer.animation_finished
hide()
$"../Settings".open()