증거품 UI

This commit is contained in:
2026-07-30 16:26:39 +09:00
parent 519e351fa5
commit 23e93a67f8
127 changed files with 55106 additions and 4 deletions

View File

@@ -31,6 +31,10 @@ private void Update()
// 무장 안 된 순간에는 클릭을 아예 보지 않는다
if (!HiddenBranchResolver.Armed) return;
// 증거품창이 떠 있으면 월드 클릭을 받지 않는다 — 창이 전체 화면 오버레이라서,
// 창 위 클릭이 이 존까지 뚫고 들어와 엉뚱한 분기를 여는 것을 막는다
if (ItemHud.Instance != null && ItemHud.Instance.IsOpen) return;
if (Mouse.current == null || !Mouse.current.leftButton.wasPressedThisFrame) return;
var cam = Camera.main;