I'm pretty new to Ren'Py but really liking it so far as I'm constructing my first VN. However I'm having great difficulty doing things which I would think would be quite easy. Currently the font for the dialogue box is standard Verdana (I think) and I want to personalise it by changing the colour and face to match my game style.
Currently I tried this in the config.rpy file:
Code: Select all
init python:
style.default.font = "KGPrimaryPenmanship2.ttf"
style.default.size = 18
style.default.color = "#19dddc"Code: Select all
style default:
font "KGPrimaryPenmanship2.ttf"
size 18
color "#19dddc"Short of adding the font information in each character's define statement (which means the 'narration' text isn't affected) I don't really know how else to change this?
Any help on this would be greatly appreciated as I am still learning, thank you in advance.
Michael