Legacy Documentation: Version 5.4
LanguageEnglish
  • C#
  • JS

Script language

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

ParticleSystem.Emit

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public function Emit(count: int): void;
public void Emit(int count);

Parameters

count Number of particles to emit.

Description

Emit count particles immediately.


public function Emit(emitParams: ParticleSystem.EmitParams, count: int): void;
public void Emit(ParticleSystem.EmitParams emitParams, int count);

Parameters

emitParams Overidden particle properties.
count Number of particles to emit.

Description

Emit a number of particles from script.

Setting properties in the emitParams will override those properties in the emitted particles. Any properties not modified will inherit the behavior specified in the inspector.