pixi.js
    Preparing search index...

    Interface RawCharDataAdvanced

    The raw data of a character in a bitmap font.

    interface RawCharData {
        height: number;
        id: number;
        kerning: Record<string, number>;
        letter: string;
        page: number;
        width: number;
        x: number;
        xAdvance: number;
        xOffset: number;
        y: number;
        yOffset: number;
    }

    Hierarchy

    Index

    Properties

    height: number

    The height of the character in the page.

    id: number

    Unique id of character

    kerning: Record<string, number>

    The kerning values for this character.

    letter: string

    The letter of the character.

    page: number

    The page of the font texture that the character is on.

    width: number

    The width of the character in the page.

    x: number

    The x position of the character in the page.

    xAdvance: number

    Advancement to apply to next character.

    xOffset: number

    x-offset to apply when rendering character

    y: number

    The y position of the character in the page.

    yOffset: number

    y-offset to apply when rendering character.