protected bool HasActiveTouch()
 {
     if (_input.GetTouchCount() > 0)
     {
         if (UICamera.isOverUI)
         {
             return(false);
         }
         return(true);
     }
     else
     {
         return(false);
     }
 }