指定 EmissionModule 是否启用或禁用。
其他资源:ParticleSystem.emission。
using UnityEngine; using System.Collections;
[RequireComponent(typeof(ParticleSystem))] public class ExampleClass : MonoBehaviour { private ParticleSystem ps; public bool moduleEnabled;
void Start() { ps = GetComponent<ParticleSystem>(); }
void Update() { var emission = ps.emission; emission.enabled = moduleEnabled; }
void OnGUI() { moduleEnabled = GUI.Toggle(new Rect(25, 45, 100, 30), moduleEnabled, "Enabled"); } }