Particle
Spawns particles on the body of the entity that has the power for visual effects.
Type ID: origins:particle
Fields
| Field | Type | Default | Description |
|---|---|---|---|
particle |
Particle Effect | The particle type that will be spawned. | |
frequency |
Integer | Determines how often the particles should spawn (interval in ticks). | |
count |
Integer | 1 |
Determines the amount of particles to spawn. |
speed |
Float | 0.0 |
Determines the speed of the specified particle type. |
spread |
Vector | {"x": 0.25, "y": 0.5, "z": 0.25} |
Determines the size of the three-dimensional cuboid volume to spawn the specified particle type in. |
offset_y |
Float | 1.0 |
The offset of where the particle will be centered in the Y axis. |
visible_in_first_person |
Boolean | false |
Determines whether the particle type should be visible in first person. |
visible_while_invisible |
Boolean | false |
Determines whether the particle type should be visible if the entity is invisible. |
Examples
{
"type": "origins:particle",
"particle": "minecraft:portal",
"frequency": 4
}
This example will continuously spawn portal particles on the entity that has the power.