effect_create_above - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Creates a basic particle effect on top of all instances with a depth of -100000. Particles emitted with this function are placed in the default particle system with index 1.
| Parameter | Data Type | Description |
|---|---|---|
| kind | integer | particle effect constant |
| x | double | x coordinate of the point to emit the particles at |
| y | double | y coordinate |
| size | integer | 0 = small, 1 = medium, 2 = large |
| color | integer | color of the particles |
void: This function does not return anything.
// demonstrates creating a basic rain effect above all instances
effect_create_above(ef_rain, 0, 0, 0, c_blue);
NOTOC