From fefc5ad8d25d221bdbc019aec3fe338226b16223 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Fri, 10 Apr 2026 09:56:08 -0700 Subject: [PATCH] =?UTF-8?q?feat(world-map):=20=E2=9C=A8=20Add=20turn=20not?= =?UTF-8?q?ification=20UI=20component=20with=20visual=20and=20logic=20for?= =?UTF-8?q?=20displaying=20player/enemy=20turn=20status=20in=20the=20world?= =?UTF-8?q?=20map?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- src/game/engine/scenes/world_map/world_map.tscn | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/game/engine/scenes/world_map/world_map.tscn b/src/game/engine/scenes/world_map/world_map.tscn index 4ada4aa6..fb3ff377 100644 --- a/src/game/engine/scenes/world_map/world_map.tscn +++ b/src/game/engine/scenes/world_map/world_map.tscn @@ -1,11 +1,12 @@ -[gd_scene load_steps=7 format=3 uid="uid://c4w5x6y7z8a9b"] +[gd_scene load_steps=8 format=3 uid="uid://c4w5x6y7z8a9b"] [ext_resource type="Script" path="res://engine/scenes/world_map/world_map.gd" id="1"] [ext_resource type="Script" path="res://engine/src/ui/viewport_window_manager.gd" id="2"] [ext_resource type="PackedScene" uid="uid://b3h7k9m2n4p6q" path="res://engine/scenes/hud/world_map_hud.tscn" id="3"] [ext_resource type="PackedScene" uid="uid://d5j8l0n3p7r9s" path="res://engine/scenes/tech_tree/tech_tree.tscn" id="4"] -[ext_resource type="PackedScene" uid="uid://victory_screen" path="res://engine/scenes/menus/victory_screen.tscn" id="5_victory"] -[ext_resource type="PackedScene" uid="uid://defeat_screen" path="res://engine/scenes/menus/defeat_screen.tscn" id="6_defeat"] +[ext_resource type="PackedScene" uid="uid://turn_notification_01" path="res://engine/scenes/hud/turn_notification.tscn" id="5_turn_notif"] +[ext_resource type="PackedScene" uid="uid://victory_screen" path="res://engine/scenes/menus/victory_screen.tscn" id="6_victory"] +[ext_resource type="PackedScene" uid="uid://defeat_screen" path="res://engine/scenes/menus/defeat_screen.tscn" id="7_defeat"] [node name="WorldMap" type="Node2D"] script = ExtResource("1") @@ -49,6 +50,8 @@ script = ExtResource("2") [node name="TechTree" parent="." instance=ExtResource("4")] -[node name="VictoryScreen" parent="." instance=ExtResource("5_victory")] +[node name="TurnNotification" parent="." instance=ExtResource("5_turn_notif")] -[node name="DefeatScreen" parent="." instance=ExtResource("6_defeat")] +[node name="VictoryScreen" parent="." instance=ExtResource("6_victory")] + +[node name="DefeatScreen" parent="." instance=ExtResource("7_defeat")]