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.

ParticleSystem.EmissionModule.SetBursts

Switch to Manual
public void SetBursts(Burst[] bursts);
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.

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) }); } }