Skip to content

Instantly share code, notes, and snippets.

@prime31
Last active August 29, 2015 14:19
Show Gist options
  • Save prime31/3b5891b83d8422db7247 to your computer and use it in GitHub Desktop.
Save prime31/3b5891b83d8422db7247 to your computer and use it in GitHub Desktop.
Example showing how the core of ZestKit can be used completely outside of the tween library. It can be used to animate anything any way you want in just a few lines of code. The core Zest methods are all available external to the library.
IEnumerator doMoveTween( Vector3 from, Vector3 to, float duration, EaseType easeType )
{
var elapsedTime = 0f;
while( elapsedTime < duration )
{
// either an ease function or an animation curve can be used here
transform.position = Zest.ease( easeType, from, to, elapsedTime, duration );
elapsedTime += Time.deltaTime;
yield return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment