its 6 am
This commit is contained in:
parent
b31b8ba5d7
commit
7fb465c82e
43 changed files with 159 additions and 86 deletions
|
@ -13,7 +13,7 @@ function st_textadv() {
|
|||
}
|
||||
if halting { exit}
|
||||
draw_sprite(sprite_index, 0, x, y);
|
||||
draw_set_font(font);
|
||||
if global.lang = LANGUAGE.ENGLISH draw_set_font(font) else draw_set_font(ft_chiaro);
|
||||
clr = c_white;
|
||||
var xpos = 0;
|
||||
var lb = 0;
|
||||
|
@ -25,14 +25,14 @@ function st_textadv() {
|
|||
shake = 0;
|
||||
sizepos = 0;
|
||||
pressing = 0;
|
||||
fontsize = font_get_size(draw_get_font())*.8;
|
||||
fontsize = font_get_size(draw_get_font())*.8 + (global.lang == LANGUAGE.JAPANESE)*5;
|
||||
atsound = 0;
|
||||
atfunc = 0;
|
||||
j = 0;
|
||||
if msg[talkpos].type == "normal" {
|
||||
draw_set_color(talker[0].namecolor);
|
||||
draw_set_halign(fa_center);
|
||||
draw_text(x+width/20-width/2+17, y-18, talker[0].name);
|
||||
draw_text(x+width/20-width/2+17, y-18-(global.lang == LANGUAGE.JAPANESE)*16, talker[0].name);
|
||||
draw_set_halign(fa_left);
|
||||
draw_set_color(c_white);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue