Version: 2017.4
LanguageEnglish
  • C#
  • JS

Script language

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

ParticleSystem.EmissionModule.GetBursts

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 method GetBursts(bursts: Burst[]): int;
public int GetBursts(Burst[] bursts);

Parameters

burstsArray of bursts to be filled in.

Returns

int The number of bursts in the array.

Description

Get the burst array.

See Also: Burst, ParticleSystem.SetBursts.

#pragma strict
private var ps: ParticleSystem;
public var hSliderValue: float = 5.0f;
function Start() {
	ps = GetComponent.<ParticleSystem>();
	var emission: var = ps.emission;
	emission.enabled = true;
	emission.SetBursts([new ParticleSystem.Burst(0.0f, 100)]);
}
function Update() {
	var emission: var = ps.emission;
	var bursts: ParticleSystem.Burst[] = new ParticleSystem.Burst[emission.burstCount];
	emission.GetBursts(bursts);
	var main: var = ps.main;
	bursts[0].minCount = bursts[0].maxCount = shorthSliderValue;
	emission.SetBursts(bursts);
}
function OnGUI() {
	hSliderValue = GUI.HorizontalSlider(new Rect(25, 45, 100, 30), hSliderValue, 5.0f, 200.0f);
}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { private ParticleSystem ps; public float hSliderValue = 5.0f;

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

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

void Update() { var emission = ps.emission; ParticleSystem.Burst[] bursts = new ParticleSystem.Burst[emission.burstCount]; emission.GetBursts(bursts);

var main = ps.main; bursts[0].minCount = bursts[0].maxCount = (short)hSliderValue;

emission.SetBursts(bursts); }

void OnGUI() { hSliderValue = GUI.HorizontalSlider(new Rect(25, 45, 100, 30), hSliderValue, 5.0f, 200.0f); } }