mwg API
    Preparing search index...

    Interface TiledTilesetData

    The fields of Tiled's tileset JSON (a .tsx exported to JSON) that the multi-tileset workflow reads: the caller loads each external tileset the map references, cuts its image to a sheet with its own tile size, and passes the sheets to loadTiledMap alongside their firstgids.

    Tilesets with a margin or spacing between tiles are not supported - SpriteSheet.grid cuts a plain grid, with no gaps.

    interface TiledTilesetData {
        image: string;
        tileheight: number;
        tilewidth: number;
    }
    Index
    image: string
    tileheight: number
    tilewidth: number