Customize the gui.textbox, gui.namebox, gui.dialogue variables which are usually defined in
gui.rpy
.
You must be registered to see the links
.
Tweaking these elements would be a place to start:
PHP:
# Customize dialogue textbox styling
## The height of the textbox containing dialogue.
define gui.textbox_height = 250
## The placement of the speaking character's name, relative to the textbox.
## These can be a whole number of pixels from the left or top, or 0.5 to center.
define gui.name_xpos = 40
## The placement of dialogue relative to the textbox.
## This is a whole number of pixels relative to the left or top side of the textbox,
## or 0.5 to center.
define gui.dialogue_xpos = 50
define gui.dialogue_ypos = 80
## The maximum width of dialogue text, in pixels.
define gui.dialogue_width = 1800