Enum AnimationBehaviour
Defines an animation channel behaves outside the defined time range. This corresponds to the prestate and poststates of the animation node.
Namespace: SharpAssimp
Assembly: SharpAssimp.dll
Syntax
public enum AnimationBehaviour
Fields
Name | Description |
---|---|
Constant | The nearest key value is used without interpolation. |
Default | The value from the default node transformation is taken. |
Linear | The value of the nearest two keys is linearly extrapolated for the current time value. |
Repeat | The animation is repeated. If the animation key goes from n to m and the current time is t, use the value at (t - n ) % (|m-n|). |