Пример #1
0
 public void IncreaseSoulCounter()
 {
     soulCount++;
     text.text = soulCount.ToString();
     if (soulCount >= 5)
     {
         exclamation.Enabled(true);
         Shaman.ChangeCursor = true;
     }
     else
     {
         exclamation.Enabled(false);
         Shaman.ChangeCursor = false;
     }
 }
Пример #2
0
 public void OnMouseDown()
 {
     if (cursorDialogueIcon == true)
     {
         Debug.Log("Called mouse event on shaman");
         SetDialogueCursor(false);
         dw.EnablePanel(true);
         exclamation.Enabled(false);
     }
 }