effect_create_below - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Creates a basic particle effect below all instances with a depth of 100000. Particles emitted with this function are placed in the default particle system with index 0.
| 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 smoke effect below an instance
effect_create_below(ef_smoke, x, y, 0, c_gray);
NOTOC