mirror of
https://github.com/RPG-Research/bcirpg.git
synced 2024-04-16 14:23:01 +00:00
12 lines
330 B
GDScript3
12 lines
330 B
GDScript3
|
#PLAYERSELECTION:
|
||
|
# Script purely to grab focus for tabbing control
|
||
|
|
||
|
extends Control
|
||
|
|
||
|
onready var settings = get_node("/root/GlobalSaveInstance").settingsInstance
|
||
|
|
||
|
# Called when the node enters the scene tree for the first time.
|
||
|
func _ready() -> void:
|
||
|
theme=load(settings.themeFile)
|
||
|
$VBoxContainer/But_ChoosePlayer.grab_focus()
|