Interface IAnimation
Interface for any animation.
Inherited Members
Namespace: Ritchie.Toolbox.Animation
Assembly: Ritchie.Toolbox.dll
Syntax
public interface IAnimation : IAnimationHandle
Properties
NextAnimations
Gets a collection of animations that will be started after this one finishes.
Declaration
IEnumerable<IAnimation> NextAnimations { get; }
Property Value
Type | Description |
---|---|
IEnumerable<IAnimation> |
Methods
Update(float)
Update the animation with a new frame.
Declaration
void Update(float deltaSeconds)
Parameters
Type | Name | Description |
---|---|---|
float | deltaSeconds | The amount of time, in seconds, that has passed since the last animation frame. |