Last active
August 29, 2015 14:19
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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