Pixel-Composer/scripts/instance_create/instance_create.gml
2023-12-29 20:30:54 +07:00

5 lines
167 B
Plaintext

function instance_create(_x, _y, object, params = {}) {
var myDepth = object_get_depth( object );
return instance_create_depth( _x, _y, myDepth, object, params );
}