Deltarune script viewer

← back to main script listing

gml_GlobalScript_debug_printline

(view raw script w/o annotations or w/e)
1
function debug_printline(arg0, arg1)
2
{
3
    if (scr_debug
scr_debug

function scr_debug() { if (global.debug == 1) return 1; }
())
4
    {
5
        draw_set_font(fnt_small);
6
        draw_set_color(c_black);
7
        yy = 480 - (8 * arg1);
8
        xx = 2;
9
        draw_set_color(c_white);
10
    }
11
}