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
// For more information read: https://github.com/ocornut/imgui/blob/33cdbe97b8fd233c6c12ca216e76398c2e89b0d8/docs/FONTS.md
39
+
40
+
io.getFonts().addFontDefault(); // Add default font for latin glyphs
41
+
42
+
// You can use the ImFontGlyphRangesBuilder helper to create glyph ranges based on text input.
43
+
// For example: for a game where your script is known, if you can feed your entire script to it (using addText) and only build the characters the game needs.
44
+
// Here we are using it just to combine all required glyphs in one place
45
+
finalImFontGlyphRangesBuilderrangesBuilder = newImFontGlyphRangesBuilder(); // Glyphs ranges provide
0 commit comments