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