Interface SceneModelStreamLayerParams

Indicates storage to allocate in a renderer layer.

Stored in @scene/SceneModelStreamParams.layers | SceneModelStreamParams.layers.

interface SceneModelStreamLayerParams {
    numIndices: number;
    numLayerMeshes: number;
    numVertices: number;
}

Properties

numIndices: number

Number of 32-bit geometry indices to allocate in the renderer layer.

numLayerMeshes: number

Number of layer meshes to allocate in the renderer layer.

numVertices: number

Number of geometry vertices to allocate in the renderer layer.