rfw2d
    Preparing search index...

    Interface TexturedBatchEntry<O>

    interface TexturedBatchEntry<O> {
        batchIndex: number;
        checkCapacity: boolean;
        delete: boolean;
        index: number;
        newSize: number;
        object?: O;
        size: number;
        texture?: TextureHandle;
        reset(): void;
    }

    Type Parameters

    • O

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    batchIndex: number = -1

    Current batch.

    checkCapacity: boolean = false

    Pending change affects if this entry fits into its current batch.

    delete: boolean = false

    Pending deletion change.

    index: number = -1

    Index within batch.

    newSize: number = 0

    New size.

    object?: O

    Object.

    size: number = 0

    Last/current size.

    texture?: TextureHandle

    Methods