- Aug 4, 2020
- 925
- 1,460
Hello, I would like to know if there is any way to change the font defined in gui.rpy "gui.interface_text_font" by means of a checkbox inside secreens.rpy (Preferences or Options) with something like this:
(This code, of course, doesn't work, I just put it to clarify my intention of how to do it)
To choose between three font types in the game.
Code:
vbox:
style_prefix "radio"
label _("Fonts")
textbutton _("arial") action xxxx arial.ttf
textbutton _("times") action xxxx times.ttf
textbutton _("ubuntu") action xxxx ubuntu.ttf
To choose between three font types in the game.