Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

Method group is Obsolete

ParticleEmitter.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

Submission failed

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

Close

Cancel

Obsolete public function Emit(): void;
Obsolete public void Emit();

Description

Emit a number of particles.

Makes the emitter spit out a random number of particles, as set by the minEmission and maxEmission properties.


Obsolete public function Emit(count: int): void;
Obsolete public void Emit(int count);

Description

Emit count particles immediately.


Obsolete public function Emit(pos: Vector3, velocity: Vector3, size: float, energy: float, color: Color): void;
Obsolete public void Emit(Vector3 pos, Vector3 velocity, float size, float energy, Color color);

Parameters

pos The position of the particle.
velocity The velocity of the particle.
size The size of the particle.
energy The remaining lifetime of the particle.
color The color of the particle.

Description

Emit a single particle with given parameters.

var emitter: ParticleEmitter;

function Start() { emitter = GetComponent.<ParticleEmitter>();

// Emit one particle at the origin, shooting straight up. // The size of the particle is 0.2 and it will live 2 seconds long. emitter.Emit(Vector3.zero, Vector3.up, 0.2, 2, Color.yellow); }

Obsolete public function Emit(pos: Vector3, velocity: Vector3, size: float, energy: float, color: Color, rotation: float, angularVelocity: float): void;
Obsolete public void Emit(Vector3 pos, Vector3 velocity, float size, float energy, Color color, float rotation, float angularVelocity);

Parameters

rotation The initial rotation of the particle in degrees.
angularVelocity The angular velocity of the particle in degrees per second.

Description