Deltarune (Chapter 3) script viewer

← back to main script listing

gml_Object_obj_chefs_scoretxt_Draw_0

(view raw script w/o annotations or w/e)
1
draw_set_font(fnt_mainbig);
2
draw_set_halign(fa_center);
3
draw_set_color(c_blue);
4
if (red)
5
    draw_set_color(merge_color(c_red, c_black, 0.7));
6
draw_text(x + 2, y + 2, blurb);
7
var _color = 16776960;
8
if (red)
9
    _color = 255;
10
draw_set_color(_color);
11
draw_text(x, y, blurb);
12
draw_set_halign(fa_left);