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

Script language

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

ParticleSystem.EmissionModule.SetBursts

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

Switch to Manual
public function SetBursts(bursts: Burst[]): void;
public void SetBursts(Burst[] bursts);
public function SetBursts(bursts: Burst[], size: int): void;
public void SetBursts(Burst[] bursts, int size);

Parameters

bursts Array of bursts.
size Optional array size, if burst count is less than array size.

Description

Set the burst array.

See Also: Burst, ParticleSystem.GetBursts.

#pragma strict
private var ps: ParticleSystem;
function Start() {
	ps = GetComponent.<ParticleSystem>();
	var emission: var = ps.emission;
	emission.enabled = true;
	emission.SetBursts([new ParticleSystem.Burst(0.0f, 100, 200), new ParticleSystem.Burst(1.0f, 10, 20)]);
}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { private ParticleSystem ps;

void Start() { ps = GetComponent<ParticleSystem>();

var emission = ps.emission; emission.enabled = true; emission.SetBursts(new ParticleSystem.Burst[] { new ParticleSystem.Burst(0.0f, 100, 200), new ParticleSystem.Burst(1.0f, 10, 20) }); } }

Did you find this page useful? Please give it a rating: