Code: Select all
style.say_who_window.xfill=True
Code: Select all
style.say_who_window.bottom_margin = -10

Code: Select all
style.say_who_window.xfill=True
Code: Select all
style.say_who_window.bottom_margin = -10
Code: Select all
$ outline = Character(None,
what_size=20, #Font size
what_xalign=0.5, #Centers text within the window
window_xalign=0.5, #Centers the window horizontally
window_yalign=0.5, #Centers the window vertically
what_text_align=0.5, #Centers text within the window, just in case
window_background=None,#Removes the window, so only the text shows
what_outlines=[(3, "#000000", 2, 2), (3, "#282", 0, 0)],
#Gives an outline
what_slow_cps=20 #Speed at which the text appears (slow)
)
Code: Select all
define me = Character(
'[name]',
window_yminimum = 20,
window_background=Frame("char/me/1.png", 20, 20),
show_two_window=True,
who_xalign=0.5,
color="#c8ffc8"
who_window_xfill=True <= this option for example
)