Version: 2021.2
public float duration ;

描述

粒子系统的持续时间(以秒为单位)。

仅当粒子系统未播放时才能设置此属性。

using UnityEngine;
using System.Collections;

[RequireComponent(typeof(ParticleSystem))] 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(); } }