swipe gestures on android in unity
问题 I'm trying to get unity to recognize that I am swiping left to right, I have solved that but my issue is that it doesn't understand this till I lift my finger off the screen. My question is how would i make it so that it knows i went right and then left and then right again all without ever taking my finger of the screen Here is the code I have so far using UnityEngine; using System.Collections; public class Gestures : MonoBehaviour { private Vector2 fingerStart; private Vector2 fingerEnd;