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_obj.gml

9 lines
238 B

/// create_log_obj(offset, label, text, pic, spacing, log_id)
l = instance_create(32, 64 + argument0 * argument4, oLog);
l.label = argument1;
l.ltext = argument2;
l.lpic = argument3;
l.optionid = argument0;
l.logid = argument5;
return l;