public void SetBursts (Burst[] bursts);
public void SetBursts (Burst[] bursts, int size);

파라미터

burstsArray of bursts.
sizeOptional array size, if burst count is less than array size.

설명

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