feat: Add initial main game scene with grid map, player board UI, and manager scripts for game logic and input.

This commit is contained in:
Yogi Wiguna
2026-02-02 16:31:07 +08:00
parent 66d34d0d29
commit 614d678b84
5 changed files with 53 additions and 3 deletions
+3
View File
@@ -190,6 +190,9 @@ func _style_button(btn: Button, opacity: float):
btn.add_theme_stylebox_override("hover", hover_style)
btn.add_theme_font_size_override("font_size", 28)
# Prevent buttons from stealing focus (fixes Spacebar activation)
btn.focus_mode = Control.FOCUS_NONE
func _on_joystick_direction(direction: Vector2i):
if local_player and local_player.has_method("simple_move_to"):