# ParticleSystemSubEmitterProperties

> The properties of sub-emitter particles.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEngine](/engine/6000.6/script-reference/unityengine.md)
* **Assembly:** UnityEngine.ParticleSystemModule

```csharp
[Flags]
public enum ParticleSystemSubEmitterProperties
```

## Fields

| Value                                                                                                                    | Description                                                                                                                                  |
| ------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------- |
| [InheritColor](/engine/6000.6/script-reference/unityengine/particlesystemsubemitterproperties/inheritcolor.md)           | When spawning new particles, multiply the start color by the color of the parent particles.                                                  |
| [InheritDuration](/engine/6000.6/script-reference/unityengine/particlesystemsubemitterproperties/inheritduration.md)     | When spawning new particles, use the duration and age properties from the parent system, when sampling MainModule curves in the Sub-Emitter. |
| [InheritEverything](/engine/6000.6/script-reference/unityengine/particlesystemsubemitterproperties/inheriteverything.md) | When spawning new particles, inherit all available properties from the parent particles.                                                     |
| [InheritLifetime](/engine/6000.6/script-reference/unityengine/particlesystemsubemitterproperties/inheritlifetime.md)     | New particles will have a shorter lifespan, the closer their parent particles are to death.                                                  |
| [InheritNothing](/engine/6000.6/script-reference/unityengine/particlesystemsubemitterproperties/inheritnothing.md)       | When spawning new particles, do not inherit any properties from the parent particles.                                                        |
| [InheritRotation](/engine/6000.6/script-reference/unityengine/particlesystemsubemitterproperties/inheritrotation.md)     | When spawning new particles, add the start rotation to the rotation of the parent particles.                                                 |
| [InheritSize](/engine/6000.6/script-reference/unityengine/particlesystemsubemitterproperties/inheritsize.md)             | When spawning new particles, multiply the start size by the size of the parent particles.                                                    |
