Example #1
0
 protected virtual void OnMouseExit()
 {
     if (CellDehighlighted != null)
     {
         CellDehighlighted.Invoke(this, new EventArgs());
     }
 }
Example #2
0
        protected virtual void OnMouseExit()
        {
            delayTime = 0;
            panel.gameObject.SetActive(false);
            frezePanel = false;

            if (CellDehighlighted != null)
            {
                CellDehighlighted?.Invoke(this, new EventArgs());
            }
        }
Example #3
0
 protected virtual void OnMouseExit()
 {
     CellDehighlighted?.Invoke(this);
 }
Example #4
0
 protected virtual void OnMouseExit()
 {
     CellDehighlighted?.Invoke(this, new EventArgs());
 }