Version: 2020.2
언어: 한국어
public void SetBursts (Burst[] bursts);
public void SetBursts (Burst[] bursts, int size);

파라미터

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

설명

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