Interface BitmapFontGlyphInfo

BitmapFont の初期化に必要なパラメータのセット

interface BitmapFontGlyphInfo {
    height: number;
    map: {
        [key: string]: GlyphArea;
    };
    missingGlyph: GlyphArea;
    width: number;
}

Properties

height: number
map: {
    [key: string]: GlyphArea;
}
missingGlyph: GlyphArea
width: number