This interface defines BMFont.

BMFont

interface BMFont {
    chars: BMFontChar[];
    common: BMFontCommon;
    distanceField: BMFontDistanceField;
    info: BMFontInfo;
    kernings: BMFontKern[];
    pages: string[];
}

Properties

chars: BMFontChar[]
common: BMFontCommon

The value to store BMFontCommon.

BMFont

distanceField: BMFontDistanceField

The value to store BMFontDistanceField.

BMFont

The value to store BMFontInfo.

BMFont

kernings: BMFontKern[]

The array to store BMFontKern.

BMFont

pages: string[]

The array to store BMFontChar.

BMFont