pixi.js
    Preparing search index...

    Interface BatchableElementAdvanced

    Represents an element that can be batched for rendering.

    interface BatchableElement {
        attributeSize: number;
        batcherName: string;
        blendMode: BLEND_MODES;
        indexSize: number;
        packAsQuad: boolean;
        texture: Texture;
        topology: Topology;
    }

    Hierarchy (View Summary)

    Index

    Properties

    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.

    indexSize: number

    The size of the index data.

    packAsQuad: boolean

    Whether the element should be packed as a quad for better performance.

    texture: Texture

    The texture to be used for rendering.

    topology: Topology

    The topology to be used for rendering.