ecspresso
    Preparing search index...

    Interface SpriteAnimationSet<A>

    A named collection of animation clips. Immutable and shared across entities. Parameterized by A (animation name union) for compile-time validation.

    interface SpriteAnimationSet<A extends string = string> {
        clips: { readonly [K in string]: SpriteAnimationClip };
        defaultClip: A;
        id: string;
    }

    Type Parameters

    • A extends string = string
    Index

    Properties

    Properties

    clips: { readonly [K in string]: SpriteAnimationClip }
    defaultClip: A
    id: string