eastern-flames/eastern flames/scripts/instance_create/instance_create.gml
2022-08-07 14:14:04 -07:00

9 lines
No EOL
257 B
Text

///@function instance_create(x, y, object, [layer, depth]);
function instance_create(x, y, object, layer_="instances", depth_) {
var chump = instance_create_layer(x, y, layer_, object);
if(depth_ != undefined){
chump.depth = depth_;
}
return chump;
}