fix title screen start button

This commit is contained in:
Haze Weathers 2023-06-02 02:24:04 -04:00
parent 51601d5ad1
commit 7ed967908b

View file

@ -3,5 +3,5 @@ extends Node
export var next_menu: PackedScene
func _input(event):
if (event is InputEventKey or event is InputEventJoypadButton) and event.pressed:
if Input.is_action_just_pressed("start"):
SceneManager.current_scene = next_menu.instance()