EvAnimationKey Interface
The EvAnimationKey TS interface specifies a blueprint of a JS object that defines a part animation key on the animation timeline.
Properties
An EvAnimationKey object has the following properties:
at: EvAnimationPosition;An
EvAnimationPositionobject, the position of a given animation key on the animation timeline.attributes: EvAnimationAttribute[];An array of members of the
EvAnimationAttributeenumeration, one or more part attributes whose animation is recorded by the given animation key.
Examples
TS
{
at: {
position: 12,
type: EvAnimationPositionType.Time
},
attributes: [
EvAnimationAttribute.Opacity,
EvAnimationAttribute.Position
]
}
JS
{
at: {
position: 12,
type: "time"
}
attributes: [
"opacity",
"position"
]
}
29 April 2025