Exemplo n.º 1
0
    public void OnPointerUp(PointerEventData eventData)
    {
        if (!active)
        {
            return;
        }

        if (eventData.pointerId == MainTouchId)
        {
            MainTouchPressed = false;
        }
        else if (eventData.pointerId == AsistTouchId)
        {
            AsistTouchPressed = false;
            CursorController.ReleaseCursor();
        }
    }