diff --git a/Assets/Scripts/PlayerInteraction.cs b/Assets/Scripts/PlayerInteraction.cs index d5bd8cf..d54e1f3 100644 --- a/Assets/Scripts/PlayerInteraction.cs +++ b/Assets/Scripts/PlayerInteraction.cs @@ -273,10 +273,10 @@ namespace Northbound GUIStyle style = new GUIStyle(GUI.skin.label) { - fontSize = 24, + fontSize = 36, alignment = TextAnchor.MiddleCenter }; - style.normal.textColor = Color.white; + style.normal.textColor = Color.black; string prompt = ""; @@ -293,7 +293,7 @@ namespace Northbound if (_isInteracting) { prompt += " (진행 중...)"; - style.normal.textColor = Color.yellow; + style.normal.textColor = Color.red; } } @@ -307,20 +307,20 @@ namespace Northbound _ => "대기 중" }; - GUI.Label(new Rect(Screen.width / 2 - 200, Screen.height - 150, 400, 50), + GUI.Label(new Rect(Screen.width / 2 - 200, Screen.height - 150, 800, 100), $"워커: {workerStatus} (가방: {assignedWorker.CurrentBagResources}/{assignedWorker.maxBagCapacity})", style); } else { - GUI.Label(new Rect(Screen.width / 2 - 200, Screen.height - 150, 400, 50), + GUI.Label(new Rect(Screen.width / 2 - 200, Screen.height - 150, 800, 100), $"워커: 미할당", style); } if (_currentInteractable != null) { - GUI.Label(new Rect(Screen.width / 2 - 200, Screen.height - 100, 400, 50), prompt, style); + GUI.Label(new Rect(Screen.width / 2 - 200, Screen.height - 100, 800, 100), prompt, style); } }