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
signal continue_game
@@ -17,6 +17,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:
if continue_button.disabled:
start_button.grab_focus()