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; } }