전장의 안개가 비활성화 되어 있을 때 적이 보이지 않는 문제 수정

This commit is contained in:
2026-02-27 14:34:29 +09:00
parent c34b9df4f7
commit 8093cca251
3 changed files with 15 additions and 6 deletions

View File

@@ -225,10 +225,10 @@ namespace Northbound
}
var fogSystem = FogOfWarSystem.Instance;
if (fogSystem == null)
if (fogSystem == null || !fogSystem.gameObject.activeInHierarchy)
{
// No fog system - stay hidden for safety
SetVisible(false);
// No fog system or disabled - always visible
SetVisible(true);
return;
}