Undertale Yellow script viewer

← back to main script listing

gml_Object_obj_dialoguebox_Draw_64

(view raw script w/o annotations or w/e)
1
if (draw == true)
2
    scr_draw_dialogue_box
scr_draw_dialogue_box

function scr_draw_dialogue_box(argument0, argument1, argument2) //gml_Script_scr_draw_dialogue_box { var xs1 = argument0 var ys1 = argument1 bsize = argument2 var xs2 = xs1 + bsize var ys2 = ys1 + bsize var xx = 160 if (position == 0) var 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) }
(4.421875, 1.09375, 0.1)
3
else
4
    return;