Ejemplo n.º 1
0
 void Start()
 {
     /*---Connecting fur item attributes to this button---*/
     button            = GetComponent <Button>();
     itemNameText.text = animalType.ToString();
     itemCostText.text = "Cost: " + cost.ToString();
     itemImage.sprite  = image;
 }
Ejemplo n.º 2
0
 void Update()
 {
     if (this.gameObject.activeSelf)
     {
         text.text = "Pick animal pen for:\n" + animalToCreate.ToString();
         CheckPens();
     }
 }