Ejemplo n.º 1
0
 public void TouchDown()
 {
     if (!_interactionEnabled)
     {
         return;
     }
     if (touchCount == 0)
     {
         touchCount++;
         StartCoroutine(StartLevelWithDelay());
     }
     _touchedDown = true;
     TouchActions.TouchDown(Input.mousePosition);
 }