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

Script language

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

ParticleSystem.EmissionModule.enabled

Switch to Manual
public bool enabled;

Description

Enable/disable the Emission module.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { private ParticleSystem ps; public bool enabled;

void Start() { ps = GetComponent<ParticleSystem>(); }

void Update() { var emission = ps.emission; emission.enabled = enabled; }

void OnGUI() { enabled = GUI.Toggle(new Rect(25, 45, 100, 30), enabled, "Enabled"); } }