here is the source code for my project
extends Control
func _ready():
$HBoxContainer/VBoxContainer/Button.grab_focus()
func _physics_process(delta):
if $HBoxContainer/VBoxContainer/Button.is_hovered() == true:
$HBoxContainer/VBoxContainer/Button.grab_focus()
func _on_Button_press():
get_tree().change_scene("res://text.tscn")
I cant seem to get the buttons to do anything. Any advice would sure help