Changing Fonts - Moe-Team/MysteryOnline GitHub Wiki
To increase user customizability in MO, we've decided to let the user have control over what font they want to use in MO. To do this, go to the folder .\MysteryOnline\src\res, there 2 files can be found
- LabelFont.ttf
- InputFont.ttf
To replace with the new font of choice, simply duplicate and rename the files appropriately. Notice how these are True Type Fonts, if the replacing files are Open Type Fonts, simply convert of change the extention of to .otf in the mysteryonline.kv in the .\MysteryOnline\src folder.
<Label>:
font_name: 'res/LabelFont.ttf'
<TextInput>:
font_name: 'res/InputFont.ttf'
Note: Though Kivy says it only supports .ttf, there have been no issues using .otf yet.