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/draw_timer.gml

11 lines
332 B

// draw_timer(x,y)
draw_set_color(c_gray);
if (oTrialLogic.timer_started == 1) then draw_set_color(c_white);
draw_set_halign(fa_right);
draw_text_border(argument0-12,argument1+3,time_string(oTrialLogic.timer));
// bye bye
/*
draw_set_halign(fa_left);
draw_text_border(argument0-12,argument1+3,time_string_ms(oTrialLogic.timer));
*/