pixi.js
    Preparing search index...

    Interface GeometryDescriptorAdvanced

    the interface that describes the structure of the geometry

    interface GeometryDescriptor {
        attributes?: AttributeOptions;
        indexBuffer?: number[] | TypedArray | Buffer;
        instanceCount?: number;
        label?: string;
        topology?: Topology;
    }
    Index

    Properties

    attributes?: AttributeOptions

    the attributes that make up the geometry

    indexBuffer?: number[] | TypedArray | Buffer

    optional index buffer for this geometry

    instanceCount?: number
    label?: string

    an optional label to easily identify the geometry

    topology?: Topology

    the topology of the geometry, defaults to 'triangle-list'