Hello,
I have this top down view of a table that I want to be able to rotate around on its Y axis via a finger swipe (mouse swipe), but I want it to be a circular gesture. What I mean by that is currently, if you swipe anywhere on the screen, the table will rotate anticlockwise. I want it so your finger can actually rotate the table itself, around its y axis.
Example:
- I swipe my finger from left to right on the lower portion of the screen, the table will rotate anticlockwise, as if its following my finger.
- I swipe my finger from left to right on the upper portion of the screen, the table will roate clockwise, as if its following my finger.
- I swipe my finger from bottom to top, on the left portion of the screen, the table will rotate clockwise, etc.
So basically, if I move my finger in a circular motion around the table, the table itself will continually rotate with my finger.
How will I introduce a system like this?
Thanks