Enable/disable the Shape module.
See Also: ParticleSystem.shape.
no example available in JavaScript
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour {
private ParticleSystem ps; public bool enabled = true;
void Start() { ps = GetComponent<ParticleSystem>(); }
void Update() { var shape = ps.shape; shape.enabled = enabled; }
void OnGUI() { enabled = GUI.Toggle(new Rect(25, 25, 200, 30), enabled, "Enabled"); } }