Pixel-Composer/objects/fx_particle_spawner/Create_0.gml

9 lines
348 B
Plaintext
Raw Normal View History

2024-03-27 11:51:14 +01:00
/// @description Insert description here
randomize();
parts = array_create_ext(8, function(i) { return [ x + random_range(-radius, radius), y + random_range(-radius, radius) ]; });
speeds = array_create_ext(8, function(i) { return [ random_range(-8, 8), random_range(-8, 0) ]; });
life = 20;
size = 2;
seed = seed_random();
depth = -19999;