Enable/disable the Shape module.
See Also: ParticleSystem.shape.
#pragma strict private var ps: ParticleSystem; public var enabled: boolean = true; function Start() { ps = GetComponent.<ParticleSystem>(); } function Update() { var shape: var = ps.shape; shape.enabled = enabled; } function OnGUI() { enabled = GUI.Toggle(new Rect(25, 25, 200, 30), enabled, "Enabled"); }
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"); } }