Hilo3d API - v2.0.0-alpha.8
    Preparing search index...

    Interface AnimationLayerParameters

    Layer configuration. Masks are exact track target identifiers; unspecified targets have zero weight.

    interface AnimationLayerParameters {
        mask?: Readonly<Record<string, number>>;
        mode?: "additive" | "override";
        motions: readonly AnimationMotion[];
        name: string;
        onEvent?: (event: AnimationEvent) => void;
        weight?: number;
    }
    Index
    mask?: Readonly<Record<string, number>>
    mode?: "additive" | "override"
    motions: readonly AnimationMotion[]
    name: string
    onEvent?: (event: AnimationEvent) => void
    weight?: number