staticfunction Lerp (from : Quaternion, to : Quaternion, t : float) : Quaternion
Description
Interpolates from towards to by t and normalizes the result afterwards.
This is faster than Slerp but looks worse if the rotations are far apart.
JavaScripts
JavaScript
C#
Boo
// Interpolates rotation between the rotations // of from and to. // (Choose from and to not to be the same as // the object you attach this script to)