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

8 lines
172 B

/// create_log_label(text)
var l;
l = instance_create(10 + (oControl.widescreen_space/3), 53 + j * 16, oMenuLabel);
l.text = argument0;
l.bg_width = 100;
j += 1;
return l;