11 public Sprite[] CountDownSprites;
12 public Color[] SpriteColors;
15 static int _tickAnimParam = Animator.StringToHash(
"Tick");
22 _animator = GetComponentInChildren<Animator>();
23 _image = GetComponentInChildren<Image>();
32 int clampedNum = Mathf.Clamp(num, 0, 3);
34 _instance._image.color = _instance.SpriteColors[clampedNum];
35 _instance._image.sprite = _instance.CountDownSprites[clampedNum];
36 _instance._image.SetNativeSize();
37 _instance._animator.SetTrigger(_tickAnimParam);
static void Display(int num)
Displays the specified number playing the animted GUI popup for it. The number will be clamped in the...
A visual representation for pre minigame count downs. Displaying values 1 to 3 show the number...