|
| static float | Linear (float start, float end, float time) |
| |
| static float | Spring (float start, float end, float time) |
| |
| static float | EaseInQuad (float start, float end, float time) |
| |
| static float | EaseOutQuad (float start, float end, float time) |
| |
| static float | EaseInOutQuad (float start, float end, float time) |
| |
| static float | EaseInCubic (float start, float end, float time) |
| |
| static float | EaseOutCubic (float start, float end, float time) |
| |
| static float | EaseInOutCubic (float start, float end, float time) |
| |
| static float | EaseInQuart (float start, float end, float time) |
| |
| static float | EaseOutQuart (float start, float end, float time) |
| |
| static float | EaseInOutQuart (float start, float end, float time) |
| |
| static float | EaseInQuint (float start, float end, float time) |
| |
| static float | EaseOutQuint (float start, float end, float time) |
| |
| static float | EaseInOutQuint (float start, float end, float time) |
| |
| static float | EaseInSine (float start, float end, float time) |
| |
| static float | EaseOutSine (float start, float end, float time) |
| |
| static float | EaseInOutSine (float start, float end, float time) |
| |
| static float | EaseInExpo (float start, float end, float time) |
| |
| static float | EaseOutExpo (float start, float end, float time) |
| |
| static float | EaseInOutExpo (float start, float end, float time) |
| |
| static float | EaseInCirc (float start, float end, float time) |
| |
| static float | EaseOutCirc (float start, float end, float time) |
| |
| static float | EaseInOutCirc (float start, float end, float time) |
| |
| static float | EaseInBounce (float start, float end, float time) |
| |
| static float | EaseOutBounce (float start, float end, float time) |
| |
| static float | EaseInOutBounce (float start, float end, float time) |
| |
| static float | EaseInBack (float start, float end, float time) |
| |
| static float | EaseOutBack (float start, float end, float time) |
| |
| static float | EaseInOutBack (float start, float end, float time) |
| |
| static float | EaseInElastic (float start, float end, float time) |
| |
| static float | EaseOutElastic (float start, float end, float time) |
| |
| static float | EaseInOutElastic (float start, float end, float time) |
| |
| static float | LinearD (float start, float end, float time) |
| |
| static float | EaseInQuadD (float start, float end, float time) |
| |
| static float | EaseOutQuadD (float start, float end, float time) |
| |
| static float | EaseInOutQuadD (float start, float end, float time) |
| |
| static float | EaseInCubicD (float start, float end, float time) |
| |
| static float | EaseOutCubicD (float start, float end, float time) |
| |
| static float | EaseInOutCubicD (float start, float end, float time) |
| |
| static float | EaseInQuartD (float start, float end, float time) |
| |
| static float | EaseOutQuartD (float start, float end, float time) |
| |
| static float | EaseInOutQuartD (float start, float end, float time) |
| |
| static float | EaseInQuintD (float start, float end, float time) |
| |
| static float | EaseOutQuintD (float start, float end, float time) |
| |
| static float | EaseInOutQuintD (float start, float end, float time) |
| |
| static float | EaseInSineD (float start, float end, float time) |
| |
| static float | EaseOutSineD (float start, float end, float time) |
| |
| static float | EaseInOutSineD (float start, float end, float time) |
| |
| static float | EaseInExpoD (float start, float end, float time) |
| |
| static float | EaseOutExpoD (float start, float end, float time) |
| |
| static float | EaseInOutExpoD (float start, float end, float time) |
| |
| static float | EaseInCircD (float start, float end, float time) |
| |
| static float | EaseOutCircD (float start, float end, float time) |
| |
| static float | EaseInOutCircD (float start, float end, float time) |
| |
| static float | EaseInBounceD (float start, float end, float time) |
| |
| static float | EaseOutBounceD (float start, float end, float time) |
| |
| static float | EaseInOutBounceD (float start, float end, float time) |
| |
| static float | EaseInBackD (float start, float end, float time) |
| |
| static float | EaseOutBackD (float start, float end, float time) |
| |
| static float | EaseInOutBackD (float start, float end, float time) |
| |
| static float | EaseInElasticD (float start, float end, float time) |
| |
| static float | EaseOutElasticD (float start, float end, float time) |
| |
| static float | EaseInOutElasticD (float start, float end, float time) |
| |
| static float | SpringD (float start, float end, float time) |
| |
| static Function | GetEasingFunction (Ease easingFunction) |
| | Returns the function associated to the easingFunction enum. This time returned should be cached as it allocates memory to return.
|
| |
| static Function | GetEasingFunctionDerivative (Ease easingFunction) |
| | Gets the derivative function of the appropriate easing function. If you use an easing function for position then this function can get you the speed at a given time (normalized).
|
| |