This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using UnityEngine; | |
| public class Numbers : MonoBehaviour | |
| { | |
| private SpriteRenderer sr; | |
| public Sprite[] numberSprites; | |
| private int index = 0; | |
| // Start is called once before the first execution of Update after the MonoBehaviour is created | |
| void Start() | |
| { |