mirror of
https://github.com/PoshoDev/DexTool.git
synced 2026-03-22 17:54:27 -05:00
7 lines
365 B
Plaintext
7 lines
365 B
Plaintext
/// @description Creates an instance of a given object at a given position.
|
|
/// @param x The x position the object will be created at.
|
|
/// @param y The y position the object will be created at.
|
|
/// @param obj The object to create an instance of.
|
|
var myDepth = object_get_depth( argument2 );
|
|
return instance_create_depth( argument0, argument1, myDepth, argument2 );
|