Hi,
I am using a modified MouseOrbit script to rotate a camera around an object. It is similar to the one in this thread: Smooth Mouse Orbit - Questions & Answers - Unity Discussions
Now I want to be able to get the camera facing each “90 degree side” of the object by pressing the right or left arrow. If the camera is between two sides it rotates to the next one.
My problem is that if I want it to look smooth (and relatively fast), it overshoots the given value. It only works without the smooth because it stops immediately at the right angle.
Anyone has an idea how to do this? I am open to completely different methods…
Thank you
EDIT:
I found a way looking at a recent post. I didn’t think of using a parent empty gameObject as a pivot point. The solution is simple after that.