言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

ParticleEmitter.enabled

Switch to Manual
public var enabled: bool;

Description

パーティクルエミッターの有効/無効

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;