From bf62a57ebc7f75cf68d59476cfaef0bb9d8000c9 Mon Sep 17 00:00:00 2001 From: Ino Date: Thu, 11 Sep 2025 08:33:13 +0900 Subject: [PATCH] =?UTF-8?q?=ED=8C=9D=EC=97=85=20=EC=B0=BD=20=EB=82=B4?= =?UTF-8?q?=EC=97=90=20=ED=95=84=EC=9A=94=20=EC=9E=AC=ED=99=94=20=EB=B6=80?= =?UTF-8?q?=EB=B6=84=20=EA=B2=80=EC=9D=80=EC=83=89=20=EB=B0=B1=ED=8C=90=20?= =?UTF-8?q?=EA=B8=B8=EC=9D=B4=20=EC=A1=B0=EC=A0=95=20=EB=B6=80=ED=83=81?= =?UTF-8?q?=EB=93=9C=EB=A6=BD=EB=8B=88=EB=8B=A4.=20=EA=B8=80=EC=94=A8?= =?UTF-8?q?=EC=83=89=EB=8F=84=20=ED=9D=B0=EC=83=89=EC=9C=BC=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=20=EB=B6=80=ED=83=81=EB=93=9C=EB=A6=BD?= =?UTF-8?q?=EB=8B=88=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Resources/Prefabs/Popups/PreviewPopup.prefab | 4 ++-- Assets/Scripts/UI/Popup/PreviewPopup.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Assets/Resources/Prefabs/Popups/PreviewPopup.prefab b/Assets/Resources/Prefabs/Popups/PreviewPopup.prefab index fa2a788..f697b30 100644 --- a/Assets/Resources/Prefabs/Popups/PreviewPopup.prefab +++ b/Assets/Resources/Prefabs/Popups/PreviewPopup.prefab @@ -1305,7 +1305,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: 100 / 000 + m_text: 100 m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: cf1ae75e65a967946b23286a5ffbb812, type: 2} m_sharedMaterial: {fileID: -6508382273668546854, guid: cf1ae75e65a967946b23286a5ffbb812, type: 2} @@ -1413,7 +1413,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 99} - m_SizeDelta: {x: 350, y: 50} + m_SizeDelta: {x: 150, y: 50} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &8106258314246835861 CanvasRenderer: diff --git a/Assets/Scripts/UI/Popup/PreviewPopup.cs b/Assets/Scripts/UI/Popup/PreviewPopup.cs index a438233..fca63f5 100644 --- a/Assets/Scripts/UI/Popup/PreviewPopup.cs +++ b/Assets/Scripts/UI/Popup/PreviewPopup.cs @@ -17,8 +17,8 @@ public class PreviewPopup : PopupBase base.ShowPopup(drawOrder); GameManager.Sound.PlaySFX(ESFXType.Open_Popup); - t_price.text = $"{Get_Price()} / {GameManager.DB.Key}"; - t_price.color = Get_Price() > GameManager.DB.Key ? Color.red : Color.green; + //t_price.text = $"{Get_Price()} / {GameManager.DB.Key}"; + //t_price.color = Get_Price() > GameManager.DB.Key ? Color.red : Color.green; } }