The function that parses font data from an ASCII string.
import { BMFontAsciiParser } from 'three-text-geometry'
const data: string = ...ascii data...
const parser = new BMFontAsciiParser();
const font: BMFont = parser.parse(data)
string
that contains font data.
Parsed data that conforms to the BMFont
interface.
The class for parsing font data in ASCII format.
BMFontAsciiParser