Interface GeometryGroup

interface GeometryGroup {
    start: number;
    count: number;
    materialIndex?: number;
}

Properties

start: number

Specifies the first element in this draw call – the first vertex for non-indexed geometry, otherwise the first triangle index.

Expects a Integer

count: number

Specifies how many vertices (or indices) are included.

Expects a Integer

materialIndex?: number

Specifies the material array index to use.

Expects a Integer