상호작용 시 모달 UI 추가(임시)

기타 디버깅 로그 제거
This commit is contained in:
2026-02-03 21:32:16 +09:00
parent 02f5aa869a
commit 965a4a25aa
22 changed files with 1082 additions and 363 deletions

View File

@@ -77,7 +77,6 @@ namespace Northbound
if (collectedAmount <= 0)
{
Debug.Log($"플레이어 {playerId}의 인벤토리가 가득 찼습니다.");
_isCollected = false;
return;
}
@@ -85,8 +84,6 @@ namespace Northbound
resourceManager.AddResource(playerId, collectedAmount);
UpdatePlayerResourcesClientRpc(playerId);
Debug.Log($"플레이어 {playerId}가 {collectedAmount} {resourceName}을(를) 획득했습니다.");
ShowPickupEffectClientRpc();
Invoke(nameof(DestroyPickup), 0.1f);
}
@@ -129,7 +126,7 @@ namespace Northbound
public string GetInteractionPrompt()
{
return $"[E] {resourceName} 획득 (+{resourceAmount})";
return $"[E] {resourceName} Get (+{resourceAmount})";
}
public string GetInteractionAnimation()