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.EmissionModule.rateOverTime

Switch to Manual
public ParticleSystem.MinMaxCurve rateOverTime;

Description

The rate at which new particles are spawned, over time.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { private ParticleSystem ps; public float hSliderValue = 5.0f;

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

void Update() { var emission = ps.emission; emission.rateOverTime = hSliderValue; }

void OnGUI() { hSliderValue = GUI.HorizontalSlider(new Rect(25, 45, 100, 30), hSliderValue, 5.0f, 200.0f); } }
对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答