Reworked main menu. Fixed projectiles bug

This commit is contained in:
2025-11-11 23:59:08 +03:00
parent 49c47f5330
commit 767e75d635
20 changed files with 156 additions and 140 deletions
+9 -1
View File
@@ -1,4 +1,4 @@
extends Node
extends Control
@onready var continue_button := $%ContinueButton
@@ -14,6 +14,14 @@ func _ready() -> void:
_setup_neighbors()
func _on_visibility_changed() -> void:
if not is_node_ready(): return
if not visible: return
_init_focus()
_setup_neighbors()
func _init_focus() -> void:
continue_button.grab_focus()