Esempio n. 1
0
 public bool setUnit(Unit u)
 {
     if (this.unit == null)
     {
         unit = u;
         this.gameObject.GetComponent <Image>().sprite = UnitSpritePool.getSprite(unit.unit_name);
         this.gameObject.GetComponent <Image>().color  = unit.getTierColor();
         return(true);
     }
     return(false);
 }
Esempio n. 2
0
 public void setUnit(Unit u)
 {
     unit      = u;
     cost.text = u.cost.ToString();
     this.gameObject.GetComponent <Image>().sprite = UnitSpritePool.getSprite(unit.unit_name);
 }
Esempio n. 3
0
 public void setUnit(Unit u)
 {
     unit = u;
     this.gameObject.GetComponent <Image>().sprite = UnitSpritePool.getSprite(unit.unit_name);
     this.gameObject.GetComponent <Image>().color  = unit.getTierColor();
 }