pixi.js
    Preparing search index...

    Interface BatchableMeshElementAdvanced

    Represents a batchable mesh element.

    interface BatchableMeshElement {
        attributeOffset: number;
        attributeSize: number;
        batcherName: string;
        blendMode: BLEND_MODES;
        indexOffset: number;
        indexSize: number;
        indices: Uint16Array | Uint32Array | number[];
        packAsQuad: false;
        positions: Float32Array | number[];
        texture: Texture;
        topology: Topology;
        uvs: Float32Array | number[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    attributeOffset: number

    The offset in the attribute buffer.

    attributeSize: number

    The size of the attribute data.

    batcherName: string

    The name of the batcher to use. Must be registered.

    blendMode: BLEND_MODES

    The blend mode to be applied.

    indexOffset: number

    The offset in the index buffer.

    indexSize: number

    The size of the index data.

    indices: Uint16Array | Uint32Array | number[]

    The indices of the mesh.

    packAsQuad: false

    Indicates that this element should not be packed as a quad.

    positions: Float32Array | number[]

    The vertex positions of the mesh.

    texture: Texture

    The texture to be used for rendering.

    topology: Topology

    The topology to be used for rendering.

    uvs: Float32Array | number[]

    The UV coordinates of the mesh.