Ejemplo n.º 1
0
        protected virtual void ResetToDefaultState()
        {
            if (s_eventBuffer == this)
            {
                s_eventBuffer = null;
            }

            _isDragging      = false;
            _isMultiTouching = false;
        }
Ejemplo n.º 2
0
 public virtual void OnPointerExit(PointerEventData eventData)
 {
     s_eventBuffer = null;
 }
Ejemplo n.º 3
0
 public virtual void OnPointerEnter(PointerEventData eventData)
 {
     s_eventBuffer = this;
 }
Ejemplo n.º 4
0
 public virtual void OnDrag(PointerEventData eventData)
 {
     _isDragging   = true;
     s_eventBuffer = this;
 }