Interface TextGlyph

The interface to define text glyph.

TextGlyph

interface TextGlyph {
    data: BMFontChar;
    index: number;
    line: number;
    position: [number, number];
}

Properties

Properties

BMFontChar data held by glyphs.

TextGlyph

index: number

The index of glyphs.

TextGlyph

line: number

The line to which Griff belongs.

TextGlyph

position: [number, number]

The start and end position of the glyph.

TextGlyph