Public repository for MUR pre alpha
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
323 B

  1. extends Control
  2. func _draw():
  3. find_node("resume").grab_focus()
  4. func _physics_process(delta):
  5. if Input.is_action_just_pressed("ui_cancel"):
  6. if is_visible_in_tree():
  7. hide()
  8. else:
  9. show()
  10. func _on_resume_pressed():
  11. hide()
  12. func _on_settings_pressed():
  13. pass
  14. func _on_end_pressed():
  15. gamestate.quit_game()