-
Notifications
You must be signed in to change notification settings - Fork 0
Effect_create_above
hpgDesigns edited this page Aug 8, 2021
·
1 revision
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
This is number 1