aboutsummaryrefslogtreecommitdiff
path: root/game/src/Game/GameSession/MapControlPanel
diff options
context:
space:
mode:
author Hop311 <hop3114@gmail.com>2023-07-28 15:18:33 +0200
committer Hop311 <hop3114@gmail.com>2023-07-28 15:18:33 +0200
commit244a669311edc5136aaa730b31ef64fd9d56879d (patch)
tree2b08788e43e72106442ed74af78fdc67ef83f3ce /game/src/Game/GameSession/MapControlPanel
parentce9022d0df74d6c33db3686622be2050d873ab0b (diff)
First pass at pops (test pops and density mapmode)
Diffstat (limited to 'game/src/Game/GameSession/MapControlPanel')
-rw-r--r--game/src/Game/GameSession/MapControlPanel/MapControlPanel.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/game/src/Game/GameSession/MapControlPanel/MapControlPanel.gd b/game/src/Game/GameSession/MapControlPanel/MapControlPanel.gd
index c84f116..350c1a8 100644
--- a/game/src/Game/GameSession/MapControlPanel/MapControlPanel.gd
+++ b/game/src/Game/GameSession/MapControlPanel/MapControlPanel.gd
@@ -11,7 +11,7 @@ signal zoom_out_button_pressed
var _mapmode_button_group : ButtonGroup
# REQUIREMENTS:
-# * UI-550, UI-552, UI-554, UI-561
+# * UI-550, UI-552, UI-554, UI-561, UI-562
func _add_mapmode_button(identifier : String) -> void:
var button := Button.new()
button.text = identifier
@@ -37,7 +37,7 @@ func _on_game_session_menu_button_pressed() -> void:
# REQUIREMENTS:
# * SS-76
-# * UIFUN-129, UIFUN-131, UIFUN-133, UIFUN-140
+# * UIFUN-129, UIFUN-131, UIFUN-133, UIFUN-140, UIFUN-141
func _mapmode_pressed(button : BaseButton) -> void:
GameSingleton.set_mapmode(button.tooltip_text)