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.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: