Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

ParticleEmitter.enabled

Switch to Manual
public var enabled: bool;

Description

Turns the ParticleEmitter on or off.

A ParticleEmitter which is not enabled will not emit any particles, and the emitted particles will not animate. So, this value allows you to pause a particle emitter.

The default value is true.

	// Pause particle emitter.

particleEmitter.enabled = false;