EvAnimationPosition Interface
The EvAnimationPosition TS interface defines a blueprint of a JS object that specifies a position on the animation timeline.
Properties
An EvAnimationPosition object has the following properties:
position: number;A number, a given position on the animation timeline. The actual value depends on the positioning method given in the
positionTypeproperty.positionType: EvAnimationPositionType;A member of the
EvAnimationPositionTypeenumeration, a method to specify the given position on the animation timeline.
Examples
TS
{
position: 12,
type: EvAnimationPositionType.Time
}
JS
{
position: 12,
type: "time"
}
26 April 2025