ParticleSystemSubEmitterType
The events that cause new particles to be spawned.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Enum
- Namespace: UnityEngine
- Assembly: UnityEngine.ParticleSystemModule
public enum ParticleSystemSubEmitterType
Fields
Value | Description |
|---|---|
| Birth | Spawns new particles when particles from the parent system are born. |
| Collision | Spawns new particles when particles from the parent system collide with something. |
| Death | Spawns new particles when particles from the parent system die. |
| Manual | Spawns new particles when triggered from script using ParticleSystem.TriggerSubEmitter. |
| Trigger | Spawns new particles when particles from the parent system pass conditions in the Trigger Module. |