Enable/disable the Custom Data module.
See Also: ParticleSystem.customData.
#pragma strict private var ps: ParticleSystem; public var moduleEnabled: boolean; function Start() { ps = GetComponent.<ParticleSystem>(); } function Update() { var customData: var = ps.customData; customData.enabled = moduleEnabled; } function OnGUI() { moduleEnabled = GUI.Toggle(new Rect(25, 45, 100, 30), moduleEnabled, "Enabled"); }
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { private ParticleSystem ps; public bool moduleEnabled;
void Start() { ps = GetComponent<ParticleSystem>(); }
void Update() { var customData = ps.customData; customData.enabled = moduleEnabled; }
void OnGUI() { moduleEnabled = GUI.Toggle(new Rect(25, 45, 100, 30), moduleEnabled, "Enabled"); } }
Did you find this page useful? Please give it a rating: