From c2743228879f8678d1b3ddbd2bc5b9787b665f6c Mon Sep 17 00:00:00 2001 From: gahusb Date: Wed, 17 Jun 2026 02:51:43 +0900 Subject: [PATCH] =?UTF-8?q?feat(deck):=20=EC=A0=9C=EA=B1=B0=EB=90=9C=20Tar?= =?UTF-8?q?getFrame=20=EC=97=94=ED=8B=B0=ED=8B=B0=20=EC=B0=B8=EC=A1=B0=20?= =?UTF-8?q?=EC=82=AD=EC=A0=9C=20(TargetMarker=20=EC=9C=A0=EC=A7=80)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 메이커 새 구조에서 MonsterStatus 슬롯의 TargetFrame이 제거됨 → combat.mjs·render.mjs의 SetEntityEnabled(.../TargetFrame) 2줄 삭제. TargetMarker·TargetMarker/Label·RenderTargetFrames(메서드)는 유지. Co-Authored-By: Claude Opus 4.8 (1M context) --- tools/deck/cb/combat.mjs | 1 - tools/deck/cb/render.mjs | 1 - 2 files changed, 2 deletions(-) diff --git a/tools/deck/cb/combat.mjs b/tools/deck/cb/combat.mjs index 321e290..032bb2d 100644 --- a/tools/deck/cb/combat.mjs +++ b/tools/deck/cb/combat.mjs @@ -75,7 +75,6 @@ for i = 1, #self.Monsters do local m = self.Monsters[i] local active = false if m ~= nil and m.alive == true and i == shownTarget then active = true end - self:SetEntityEnabled("/ui/RunUIGroup/CombatHud/MonsterStatus" .. tostring(i) .. "/TargetFrame", active) self:SetEntityEnabled("/ui/RunUIGroup/CombatHud/MonsterStatus" .. tostring(i) .. "/TargetMarker", active and dragActive) self:SetEntityEnabled("/ui/RunUIGroup/CombatHud/MonsterStatus" .. tostring(i) .. "/TargetMarker/Label", active and dragActive) end`), diff --git a/tools/deck/cb/render.mjs b/tools/deck/cb/render.mjs index cc4e644..90c8182 100644 --- a/tools/deck/cb/render.mjs +++ b/tools/deck/cb/render.mjs @@ -41,7 +41,6 @@ return table.concat(parts, " ")`, [ local dragActive = self.DragTargetIndex ~= nil and self.DragTargetIndex > 0 local shownTarget = self.TargetIndex if dragActive == true then shownTarget = self.DragTargetIndex end - self:SetEntityEnabled(base .. "/TargetFrame", i == shownTarget) self:SetEntityEnabled(base .. "/TargetMarker", i == shownTarget and dragActive) self:SetEntityEnabled(base .. "/TargetMarker/Label", i == shownTarget and dragActive) local intentEntity = _EntityService:GetEntityByPath(base .. "/Intent")