Pixel-Composer/scripts/fx_controller/fx_controller.gml
2024-03-27 17:51:14 +07:00

5 lines
147 B
Plaintext

function spawn_particle(_x, _y, _rad = 4) {
INLINE
var _param = { radius: _rad };
return instance_create(_x, _y, fx_particle_spawner, _param);
}