InterpolateTo()

I think remember Director had a method InterpolateTo(), that would allow you to animate an object from one point to another point. Is there an equivalent in Unity?

If not any suggestions how I could do this? Preferably in C# :slight_smile:

Are you refering to Lerp or Slerp?

You could also use Unity’s animation editor to achieve this, or use a third party utility such as iTween.

The easiest method is probably to use iTween like Quietus suggested.

Could some one explain the benefits of iTween? How would it be better then Slerp, Lerp, MoveTowards?

Thanks for the replies. I was looking at iTween a few weeks ago and knew it would come in handy at some point. Don’t know why I forgot about it. But I’ll start by looking at Sleerp and Lerp.