17 lines
188 B
GDScript
17 lines
188 B
GDScript
extends Control
|
|
|
|
|
|
func _draw():
|
|
find_node("resume").grab_focus()
|
|
|
|
|
|
func _on_resume_pressed():
|
|
hide()
|
|
|
|
|
|
func _on_settings_pressed():
|
|
pass
|
|
|
|
|
|
func _on_end_pressed():
|
|
gamestate.quit_game() |