This class contains a C# port of the easing equations created by Robert Penner (http://robertpenner.com/easing). More...
Static Public Member Functions | |
| static float | EaseNone (float time, float startValue, float changeValue, float duration, float unusedOvershootOrAmplitude, float unusedPeriod) |
| Easing equation function for a simple linear tweening, with no easing. | |
This class contains a C# port of the easing equations created by Robert Penner (http://robertpenner.com/easing).
| static float EaseNone | ( | float | time, |
| float | startValue, | ||
| float | changeValue, | ||
| float | duration, | ||
| float | unusedOvershootOrAmplitude, | ||
| float | unusedPeriod | ||
| ) | [static] |
Easing equation function for a simple linear tweening, with no easing.
| time | Current time (in frames or seconds). |
| startValue | Starting value. |
| changeValue | Change needed in value. |
| duration | Expected easing duration (in frames or seconds). |
| unusedOvershootOrAmplitude | Unused: here to keep same delegate for all ease types. |
| unusedPeriod | Unused: here to keep same delegate for all ease types. |