27 lines
466 B
GDScript
27 lines
466 B
GDScript
extends Control
|
|
|
|
|
|
func _input(event):
|
|
if Input.is_action_pressed("ui_menu"):
|
|
$Menu.visible = ! $Menu.visible
|
|
|
|
|
|
func _on_timer_timeout():
|
|
print("fin")
|
|
$Message/Label.visible = false
|
|
|
|
|
|
func _on_quit_pressed():
|
|
#get_tree().quit()
|
|
$ConfirmQuit.popup_centered()
|
|
$ConfirmQuit.visible = true
|
|
pass
|
|
|
|
|
|
func _on_confirmation_dialog_confirmed():
|
|
get_tree().quit()
|
|
|
|
|
|
func _on_languages_pressed():
|
|
$MenuOption/Window.popup_centered()
|
|
$MenuOption/Window.visible = true
|