- Dec 27, 2017
- 85
- 169
Thanks for making me aware of outlines, I managed to figure out how.That's why I make the text white (already the case for this VN) and add a black outline. It's readable on any background without the textbox. Saves me the trouble of pressing H every 3 seconds.
Location of the file to edit for text color/outlines/shadows:
Inertia\game\gui.rpy
White text color:
define gui.text_color = '#ffffff'
-for interface text color:
define gui.interface_text_color
-for narrator's text color:
define gui.dialogue_text_color
-for characters text color:
define gui.name_text_color
Add this line for Black outline & shadows:
define gui.text_outlines = [ (1, "#000000", 2, 2) ]
-increase 1st '1' value to enlarge text outline
-use 2nd "#000000" to change text outline color, from Black to whatever
-increase 3rd '2' value to enlarge text shadow X
-increase 4th '2' value to enlarge text shadow Y