diff --git a/Assets/Scenes/MainScene.unity b/Assets/Scenes/MainScene.unity index fe5e082..2e56e84 100644 --- a/Assets/Scenes/MainScene.unity +++ b/Assets/Scenes/MainScene.unity @@ -2712,7 +2712,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 68.54913, y: -22.5} + m_AnchoredPosition: {x: 66, y: -30} m_SizeDelta: {x: 115, y: 45} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &865947144 @@ -3796,10 +3796,10 @@ RectTransform: m_Father: {fileID: 1061398534} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -242.5, y: 202.5} - m_SizeDelta: {x: -515, y: -435} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 165, y: -45} + m_SizeDelta: {x: 300, y: 60} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1070476669 MonoBehaviour: @@ -3874,8 +3874,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 85.08983, y: -22.25} - m_SizeDelta: {x: 53.6157, y: 44.5} + m_AnchoredPosition: {x: 180, y: -30} + m_SizeDelta: {x: 200, y: 45} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1089918735 MonoBehaviour: @@ -5271,8 +5271,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 90.6, y: -22.5} - m_SizeDelta: {x: 53.6157, y: 44.5} + m_AnchoredPosition: {x: 180, y: -30} + m_SizeDelta: {x: 200, y: 45} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1347709342 MonoBehaviour: @@ -6508,10 +6508,10 @@ RectTransform: m_Father: {fileID: 1061398534} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -242.5, y: 147.5} - m_SizeDelta: {x: -515, y: -435} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 165, y: -115} + m_SizeDelta: {x: 300, y: 60} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1649897727 MonoBehaviour: @@ -7725,8 +7725,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 66.029, y: -22.5} - m_SizeDelta: {x: 115, y: 45} + m_AnchoredPosition: {x: 66, y: -30} + m_SizeDelta: {x: 115, y: 60} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2022611510 MonoBehaviour: diff --git a/Assets/Scripts/PlayerController.cs b/Assets/Scripts/PlayerController.cs index 2af46cb..3b3ab36 100644 --- a/Assets/Scripts/PlayerController.cs +++ b/Assets/Scripts/PlayerController.cs @@ -34,6 +34,7 @@ public class PlayerController : MonoBehaviour { private void Start() { _money = startMoney; _inventory = Inventory.instance; + moneyTextMeshProUGUI.text = _money + "µ"; } public void SetSelectedItem(UsableItem item) { @@ -51,6 +52,6 @@ public class PlayerController : MonoBehaviour { public void ChangeMoney(int amount) { _money += amount; - moneyTextMeshProUGUI.text = amount + "µ"; + moneyTextMeshProUGUI.text = _money + "µ"; } } \ No newline at end of file