From ea80402fc15a61adb4a19b6ca72cbe539a3f287f Mon Sep 17 00:00:00 2001 From: BoyongHwang Date: Wed, 4 Feb 2026 15:43:37 +0900 Subject: [PATCH] =?UTF-8?q?=ED=99=94=EB=A9=B4=20=ED=95=98=EB=8B=A8=20?= =?UTF-8?q?=EC=9D=B8=ED=84=B0=EB=9E=99=EC=85=98=20=EC=9E=84=EC=8B=9C=20UI?= =?UTF-8?q?=20=EA=B0=80=EB=8F=85=EC=84=B1=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 기본 색상 white => black - 경고 색상 yellow => red - 폰트 사이즈 24 => 36 - 상자 너비, 높이 수정 --- Assets/Scripts/PlayerInteraction.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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); } }