What's New
- Fixed and Improved CJK Font Support (
full_unicode): We fixed an issue with thefull_unicodeflag to properly support CJK (Chinese, Japanese, and Korean) fonts.
How to use it:
If you are adding a custom font that already includes non-Latin characters built-in, you can now add "full_unicode": true to your font's .json file. This tells the submod to use your font directly for all glyphs instead of relying on the default fallback fonts.
Here is an example of how your .json file should look with this optional parameter included at the end:
{
"my_custom_font": {
"name": "My CJK Font",
"font_default": "MyFont.ttf",
"font_label": "MyFont.ttf",
"font_button": "MyFont.ttf",
"size_default": 26,
"size_button": 26,
"size_quick": 18,
"size_label": 32,
"padding": 3,
"full_unicode": true
}
}