Strata - v1.4.10
    Preparing search index...

    Type Alias AnimationEvent

    AnimationEvent:
        | { animation: string; type: "PLAY" }
        | { type: "STOP" }
        | { type: "PAUSE" }
        | { type: "RESUME" }
        | { speed: number; type: "SET_SPEED" }
        | { delta: number; type: "TICK" }
        | { type: "ANIMATION_COMPLETE" }
        | { target: AnimationStateName; type: "TRANSITION" }
        | { duration: number; target: AnimationStateName; type: "BLEND" }

    Events that can be sent to the animation state machine.