Exemplo n.º 1
0
        private void ChangeTouchType(eTouchType touchPhase)
        {
            if (m_touchType == touchPhase)
            {
                return;
            }

            m_touchType = touchPhase;

            CheckPointerOverUI();

            ResetRotate();
            ResetFingerDistance();
        }
Exemplo n.º 2
0
 public TouchPoint(Point pInput, eTouchType pTouchType)
 {
     Position  = pInput;
     TouchType = pTouchType;
 }
Exemplo n.º 3
0
 public InputData_Mobile(AutoCamera camera)
     : base(camera)
 {
     ResetFingerDistance();
     m_touchType = eTouchType.None;
 }