Legacy Documentation: Version 5.0
Language: English
  • C#
  • JS

Script language

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

ParticleSystem.Emit

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

Parameters

Description

Emit count particles immediately.


public function Emit(position: Vector3, velocity: Vector3, size: float, lifetime: float, color: Color32): void;

Parameters

positionThe position of the particle.
velocityThe velocity of the particle.
sizeThe size of the particle.
lifetimeThe remaining lifetime of the particle.
colorThe color of the particle.

Description

Emit a single particle with given parameters.


public function Emit(particle: Particle): void;

Parameters

Description

Emit a single particle.