Class NumberAnimation<TNumber>
Defines an animation that blends between two numeric values implementing the .NET INumber<TSelf> interface.
Inherited Members
Namespace: Ritchie.Toolbox.Animation
Assembly: Ritchie.Toolbox.dll
Syntax
public sealed class NumberAnimation<TNumber> : Animation<TNumber>, IAnimation, IAnimationHandle where TNumber : struct, INumber<TNumber>
Type Parameters
Name | Description |
---|---|
TNumber |
Constructors
NumberAnimation(CurveFunction, float, TNumber, TNumber, Action<TNumber>)
Defines an animation that blends between two numeric values implementing the .NET INumber<TSelf> interface.
Declaration
public NumberAnimation(CurveFunction curveFunction, float duration, TNumber from, TNumber to, Action<TNumber> callback)
Parameters
Type | Name | Description |
---|---|---|
CurveFunction | curveFunction | The curve function to use for the animation. |
float | duration | The length, in seconds, of the animation. |
TNumber | from | The value to start from. |
TNumber | to | The value to blend toward. |
Action<TNumber> | callback | A callback to execute on each animation step. |