Version: 2018.3 (switch to 2019.1)
LanguageEnglish
  • C#

ParticleSystem.MainModule.duration

Switch to Manual
public float duration;

Description

The duration of the Particle System in seconds.

This property can only be set when the Particle System is not playing.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { private ParticleSystem ps;

void Start() { ps = GetComponent<ParticleSystem>(); ps.Stop(); // Cannot set duration whilst Particle System is playing

var main = ps.main; main.duration = 10.0f;

ps.Play(); } }

Did you find this page useful? Please give it a rating: