disable animation on tab at start

This commit is contained in:
2026-05-15 21:36:11 +02:00
parent 5be52377a4
commit 394c4babd1
2 changed files with 5 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ func _ready() -> void:
for tab: GameMenuTab in tabs:
tab.on_tab_selected.connect(_on_tab_pressed)
tabs[0].select()
tabs[0].select_without_animation()
pages[0].show()
func _on_tab_pressed(index: int):