You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
msdfgen --help specifies that -font takes a .ttf file along with one of the following:
a glyph index prefixed with letter g or G
a character code (undocumented: optionally prefixed with u or U)
a character in apostrophes, (ex: 'A')
-font <filename.ttf> <character code>
Loads a single glyph from the specified font file.
Format of character code is '?', 63, 0x3F (Unicode value), or g34 (glyph index).
However, the last option does not work, and results in an assert being triggered. As an example:
No character specified! Use -font <file.ttf/otf> <character code>. Character code can be a Unicode index (65, 0x41), a character in apostrophes ('A'), or a glyph index prefixed by g (g36, g0x24).
The text was updated successfully, but these errors were encountered:
msdfgen --help
specifies that-font
takes a.ttf
file along with one of the following:g
orG
u
orU
)'A'
)However, the last option does not work, and results in an assert being triggered. As an example:
results in:
The text was updated successfully, but these errors were encountered: