Version: 2017.2
public bool enabled ;

Descripción

Enable/disable the Emission module.

using UnityEngine;
using System.Collections;

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

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

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

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