pixi.js
    Preparing search index...

    Interface SpriteSheetJsonAdvanced

    Interface for the JSON data structure of a spritesheet. This is used to define the structure of the JSON file that describes a spritesheet. It includes metadata about the spritesheet and the frames it contains.

    interface SpriteSheetJson {
        animations?: Dict<string[]>;
        frames: Dict<SpritesheetFrameData>;
        meta: { image: string; related_multi_packs?: string[]; scale: string };
    }

    Hierarchy (View Summary)

    Index

    Properties

    animations?: Dict<string[]>

    The animations of the atlas.

    The frames of the atlas.

    meta: { image: string; related_multi_packs?: string[]; scale: string }

    The meta data of the atlas.