Exemplo n.º 1
0
        public void OnPointerExit(PointerEventData eventData)
        {
            if (eventData.pointerDrag == null)
            {
                return;
            }

            Draggable d = eventData.pointerDrag.GetComponent <Draggable>();

            if (d != null)
            {
                d.ExitZone(this);
            }
        }
Exemplo n.º 2
0
 public virtual void OnDropOut(Draggable item)
 {
 }