Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

ParticleSystem.CustomDataModule.enabled

Switch to Manual
public bool enabled;

Description

Enable/disable the Custom Data module.

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: