part_attractor_create - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Creates a new particle attractor in the given particle system and returns the index. A particle attractor will attract particles towards it.
Parameter | Data Type | Description |
---|---|---|
sys | integer | index of the particle system |
integer: Returns the index of the newly created particle attractor.
// demonstrates creating a particle attractor
var attr;
attr = particle_attractor_create(sys);
NOTOC