EvAnimationFlashEffect Interface
The EvAnimationFlashEffect TS interface defines a blueprint of a JS object that specifies an animation effect of parts flashing with color.
Properties
An EvAnimationFlashEffect object has the following properties:
color: string;A string, a color of part flashes specified as an RGB hex triplet in the following format:
#rrggbb.repetition: number;A number, the total number of part flashes.
span: EvAnimationTimeSpan;An
EvAnimationTimeSpanobject, the position and duration of the flash effect on the animation timeline.
Examples
TS
{
color: "#B3282E",
repetition: 12,
span: {
end: 7,
type: EvAnimationPositionType.Time,
start: 5
}
}
JS
{
color: "#B3282E",
repetition: 12,
span: {
end: 7,
type: "time",
start: 5
}
}
28 April 2025