Pixel-Composer/scripts/instance_create/instance_create.gml

5 lines
167 B
Plaintext
Raw Normal View History

2023-12-29 14:30:54 +01:00
function instance_create(_x, _y, object, params = {}) {
2023-02-14 02:48:33 +01:00
var myDepth = object_get_depth( object );
2023-12-29 14:30:54 +01:00
return instance_create_depth( _x, _y, myDepth, object, params );
2023-02-14 02:48:33 +01:00
}