예제 #1
0
 void OnMouseEnter()
 {
     if (map.mouseIsOverUIElement && map.respectOtherUI)
     {
         return;
     }
     mouseIsOver = true;
     if (OnPointerEnter != null)
     {
         OnPointerEnter(this);
     }
     map.BubbleEvent(map.OnVGOPointerEnter, this);
     map.VGOLastHighlighted = this;
 }