UI Redisgn

This commit is contained in:
brausjonas
2023-02-27 21:24:52 +01:00
parent 03f9d92aab
commit 87a13f5b43
43 changed files with 1013 additions and 82 deletions
+2 -2
View File
@@ -62,12 +62,12 @@ public class UIHandler : MonoBehaviour
if (player.coins < 20)
{
controller.infoText.text = "oh... sorry... but you do not have enough coins (20)";
controller.infoText.text = "sorry... but you do not have enough coins";
controller.buttonBuy.SetActive(false);
}
else
{
controller.infoText.text = "do you want to buy a star? (20 coins)";
controller.infoText.text = "A Star for you!";
controller.buttonBuy.SetActive(true);
}
}