예제 #1
0
 public void EnableIcon(CoolDownTimer icon)
 {
     icon.GetComponent <Image>().enabled = true;
 }
예제 #2
0
 public void SwitchIcons(CoolDownTimer from, CoolDownTimer to)
 {
     from.GetComponent <Image>().enabled = false;
     to.GetComponent <Image>().enabled   = true;
 }