版本:Unity 6 (6000.0)
语言英语
  • C#

ParticleSystem.MainModule.startDelay

提出更改

成功!

感谢您帮助我们提高 Unity 文档的质量。尽管我们无法接受所有提交,但我们会阅读每位用户的建议更改,并在适用的情况下进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请在几分钟后重试。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

切换到手册
public ParticleSystem.MinMaxCurve startDelay;

描述

以秒为单位的开始延迟。

将其用于延迟系统上回放开始的时间。其他资源:MinMaxCurve

using UnityEngine;
using System.Collections;

[RequireComponent(typeof(ParticleSystem))] public class ExampleClass : MonoBehaviour { private ParticleSystem ps; private bool restart; public float hSliderValue = 0.0F;

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

void Update() { if (restart) { ps.Stop(); ps.Clear();

var main = ps.main; main.startDelay = hSliderValue;

ps.Play();

restart = false; } }

void OnGUI() { hSliderValue = GUI.HorizontalSlider(new Rect(25, 45, 100, 30), hSliderValue, 0.0F, 5.0F); restart = GUI.Button(new Rect(25, 75, 100, 30), "Restart"); } }