건설 퀵슬롯 생성

This commit is contained in:
2026-01-28 00:37:56 +09:00
parent 8799c4f8f4
commit 68a2e4e340
18 changed files with 2507 additions and 167 deletions

View File

@@ -133,13 +133,6 @@ namespace Northbound
return false;
}
// 쿨다운 체크
if (Time.time - _lastInteractionTime < buildingData.interactionCooldown)
{
Debug.Log($"[BuildingFoundation] Cooldown active: {Time.time - _lastInteractionTime}/{buildingData.interactionCooldown}");
return false;
}
// 이미 완성됨
if (_currentProgress.Value >= buildingData.requiredWorkAmount)
{
@@ -155,7 +148,6 @@ namespace Northbound
return false;
}
Debug.Log($"<color=green>[BuildingFoundation] CanInteract = true</color>");
return true;
}