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

12 lines
318 B

// create_button(xx,yy,width,height,flag,string,sprite,border);
with (instance_create(-200,-200,oEditorButton)){
button_width = argument2;
button_height = argument3;
button_x = argument0;
button_y = argument1;
button_flag = argument4;
button_string = argument5;
button_sprite = argument6;
button_border = argument7;
}