Godot Version
4.2.2
Question
To make my menu, I have watched a youtube tutorial.
I can use it with a mouse but I want to make it usable with a controller.
The code of the menu:
extends Control
func _on_play__pressed():
get_tree().change_scene_to_file("res://Scenes/LVL-Test.tscn")
func _on_quit_pressed():
get_tree().quit()
func _on_options_pressed():
get_tree().change_scene_to_file("res://Scenes/GUI/options.tscn")
I have three buttons : Play, Options and Quit.
How can I do ?