Unity 3D leap motion

266 Views Asked by At

I am currently working on a project and trying to get swipe gesture working. Current output is several instances of swipe gestures from just a swipe. How can i get one instance?

Thanks

2

There are 2 best solutions below

0
On
if (Input.touchCount > 0)
{
    Input.GetTouch(0).phase == TouchPhase.Moved)
    {
        // One swipe gesture
    }
}
0
On

You can setup a Boolean variable to change state if a good swipe was performed and if it set to true, swipe recognition will be disable lets say 2 seconds or until some actions get completed.