You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2R-TimeTrials/scripts/debug_draw_var.gml

6 lines
153 B

/// debug_draw_var(name, value)
draw_set_font(fontMenuSmall);
draw_set_alpha(1);
draw_text_shadow(2, 24 + i * 8, argument0 + string(argument1));
i += 1;