pixi.js
    Preparing search index...

    Interface CharDataAdvanced

    interface CharData {
        id: number;
        kerning: Record<string, number>;
        texture?: Texture;
        xAdvance: number;
        xOffset: number;
        yOffset: number;
    }
    Index

    Properties

    id: number

    Unique id of character

    kerning: Record<string, number>

    The kerning values for this character.

    texture?: Texture

    The texture of the character.

    xAdvance: number

    Advancement to apply to next character.

    xOffset: number

    x-offset to apply when rendering character

    yOffset: number

    y-offset to apply when rendering character.