10 lines
325 B
GDScript
10 lines
325 B
GDScript
extends VBoxContainer
|
|
|
|
@onready var debug_tab_container: TabContainer = %DebugTabContainer
|
|
@onready var toggle_debug_button: Button = %ToggleDebugButton
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready() -> void:
|
|
if debug_tab_container.visible:
|
|
toggle_debug_button.set_pressed_no_signal(true)
|