Undertale Yellow script viewer

← back to main script listing

gml_GlobalScript_scr_draw_dialogue_box_anywhere

(view raw script w/o annotations or w/e)
1
function scr_draw_dialogue_box_anywhere
scr_draw_dialogue_box_anywhere

function scr_draw_dialogue_box_anywhere(arg0, arg1, arg2, arg3) { var xs1 = arg0; var ys1 = arg1; bsize = arg2; var xs2 = xs1 + bsize; var ys2 = ys1 + bsize; var xx = arg3; var yy; if (position == 0) yy = 198; else yy = 45; draw_sprite_ext(spr_dialoguebox, 1, xx, yy, xs2, ys2, image_angle, c_white, image_alpha); draw_sprite_ext(spr_dialoguebox, 0, xx, yy, xs1, ys1, image_angle, image_blend, image_alpha); }
(arg0, arg1, arg2, arg3)
2
{
3
    var xs1 = arg0;
4
    var ys1 = arg1;
5
    bsize = arg2;
6
    var xs2 = xs1 + bsize;
7
    var ys2 = ys1 + bsize;
8
    var xx = arg3;
9
    var yy;
10
    if (position == 0)
11
        yy = 198;
12
    else
13
        yy = 45;
14
    draw_sprite_ext(spr_dialoguebox, 1, xx, yy, xs2, ys2, image_angle, c_white, image_alpha);
15
    draw_sprite_ext(spr_dialoguebox, 0, xx, yy, xs1, ys1, image_angle, image_blend, image_alpha);
16
}