Level.gd 194 B

123456789
  1. extends Node2D
  2. const MENU_FILE: String = "res://run/menu.tscn"
  3. func _input(event: InputEvent) -> void:
  4. if event.is_action_pressed("ui_cancel"):
  5. get_tree().change_scene_to_file(MENU_FILE)