Deltarune (Chapter 3) script viewer

← back to main script listing

gml_Object_obj_b2_ninfriendo_wiremanagement_Draw_73

(view raw script w/o annotations or w/e)
1
var debug = false;
2
if (debug)
3
{
4
    var xx = camerax() + 20;
5
    var yy = cameray() + 20;
6
    var space = 8;
7
    var count = 0;
8
    draw_set_font(fnt_small);
9
    if (i_ex(favored))
10
        draw_set_color(c_yellow);
11
    if (i_ex(unfavored))
12
        draw_set_color(c_orange);
13
    if (i_ex(rouxls))
14
        draw_set_color(c_blue);
15
    draw_set_color(c_yellow);
16
    draw_text_outline(xx, yy + (space * count), "xoff[0]=" + string(xoff[0]));
17
    count++;
18
    draw_text_outline(xx, yy + (space * count), "yoff[0]=" + string(yoff[0]));
19
    count++;
20
    draw_set_color(c_aqua);
21
    draw_text_outline(xx, yy + (space * count), "xoff[1]=" + string(xoff[1]));
22
    count++;
23
    draw_text_outline(xx, yy + (space * count), "yoff[1]=" + string(yoff[1]));
24
    count++;
25
}