Hello guys, im using this swipe method(with lerp) prntscr.com/j55fi7
But how i can stop swiping screen in a certain place? Like turning page. For example, swipe at 720 pixels along the x-axis and stop.
Thanks.
Add a condition to the Touch - Is in touch event.
System compare two values, ScrollX < 720.
Then the event will no longer run if ScrollX is greater than 720.
Develop games in your browser. Powerful, performant & highly capable.
Thanks!