bcirpggithubmirror/Phase2/Godot_GameCode/ImportCharacter/screens/MenuScreen.gd
2023-07-09 12:28:09 -06:00

10 lines
211 B
GDScript

#MENUSCREEN:
# Script purely to grab focus for tabbing control
extends Control
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
$VBoxContainer/But_NewGame.grab_focus()