interface TilesetStreamerParams {
    concurrency?: number;
    dracoModule?: any;
    fetchArrayBuffer?: (url: string) => Promise<ArrayBuffer>;
    maxLoadedTiles?: number;
    maxScreenSpaceError?: number;
    scene: Scene;
    signal?: AbortSignal;
    tree: TileNode;
}

Properties

concurrency?: number

Max concurrent tile loads. Default 6.

dracoModule?: any
fetchArrayBuffer?: (url: string) => Promise<ArrayBuffer>
maxLoadedTiles?: number

Cap on tiles rendered at once; when the selection exceeds it, the nearest are kept. Default 512.

maxScreenSpaceError?: number

Pixel SSE above which a tile refines to its children. Default 16.

scene: Scene
signal?: AbortSignal
tree: TileNode