Contains specific details about an animation's effect. Returned by AnimClip.getEffectDetails.

interface AnimClipEffectDetails {
    category: EffectCategory;
    effectGenerator: EffectGenerator;
    effectName: string;
    effectOptions: unknown[];
}

Properties

category: EffectCategory

The category of the effect (e.g., "Entrance", "Exit", "Motion", etc.).

effectGenerator: EffectGenerator

Generator containing the function used to generate the effect and possibly a set of default configuration options for the effect.

effectName: string

Name of the animation effect.

effectOptions: unknown[]

An array containing the effect options used to set the behavior of the animation effect.