feat: Implement the "Stop N Go" arena with new assets, scenes, and associated game logic and UI.

This commit is contained in:
Yogi Wiguna
2026-03-26 15:13:24 +08:00
parent ebc1c9868a
commit 18e0e8aafd
150 changed files with 7726 additions and 10357 deletions
+1 -1
View File
@@ -228,7 +228,7 @@ func _ready():
if is_bot or is_in_group("Bots"):
# Bots get a unique name based on their Node Name (Bot ID)
var bot_id = name.to_int()
var bot_names = ["Bot", "Alpha", "Beta", "Gamma", "Delta"]
var bot_names = ["Bot", "Alpha", "Beta", "Delta"]
var name_idx = (bot_id - 1) % bot_names.size()
display_name = "%s %d" % [bot_names[name_idx], bot_id]
else: