Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

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;