- Home /
How can I create a virtual book?
Hey guys, I need a big help.
I want to create a vitual book with Unity. I'm using C #.
What I need is a way to give the images, in which case are used as pages, slide to the left when the child swiping the screen.
I even managed to slide, but the speed is very high and only glides while the finger is still touching the screen. I want the page to be thrown to the side and drag a second page, third and so on.
Can anyone help this newbie?
Grateful.
This is not a "write my code for me" site. If you show us the code that you're currently using, we might be able to suggest improvements of fixes.
Answer by Okari-Draconis · Jul 02, 2014 at 06:40 PM
You should beable to track the when the touch began, and when the touch ended, and for how long...
Given a Start Position, an End Position, and a Total Time for how long they were touching for..
You could calculate out a swipe velocity, and if that volocity's direction is kinda going the right way, and the magnitude is big enough, you could trigger a your code to flip the page.
Additionally, you may want to check out NGUI. I think he has swipe controls.. Hope this helps
Your answer
Follow this Question
Related Questions
Changing the Slider.value cause a lag problem in an Android device. 1 Answer
Slide menu using gestures 2 Answers
Android Sliding Controls 0 Answers