ui addons

This commit is contained in:
2022-10-31 15:07:06 +01:00
parent 1efd7c662b
commit 06a1c3f45a
6 changed files with 1800 additions and 73 deletions

View File

@@ -39,7 +39,7 @@ public class Dice : MonoBehaviour {
randomDiceSide = Random.Range(0, 5);
rend.sprite = diceSides[Random.Range(0, 5)];
rend.size = new Vector2(40, 40);
rend.size = new Vector2(38, 38);
yield return new WaitForSeconds(0.05f);
}