I have one textbox for characters speaking which has a space for their name. I have another textbox for narration, obviously minus the space for the names. Previously these were lined up and working fine, the name was in the name space, text was in the text space... But then I changed the size of the name font (using 'style.say_label.size = 30' ). And now if I line up the name/speech perfectly, then the narration will be off. If I line up the narration perfectly, the name/speech will be off...
I'm using this in the options.rpy to line up the narration text:
Code: Select all
style.window.left_padding = 287
style.window.right_padding = 277
style.window.top_padding = 560
style.window.bottom_padding = 20Code: Select all
screen say(who, what, side_image=None, two_window=False):
if not two_window:
window:
id "window"
has vbox:
style "say_vbox"
if who:
text who id "who" xpos -83 ypos -18
else:
text " "
text what id "what"Is there some way I can get this working without having to revert the name back to a smaller font size?