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

ParticleSystem.VelocityOverLifetimeModule.speedModifier

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交的内容,但我们确实会阅读用户提供的每个建议的更改,并在适用时进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

切换到手册
public ParticleSystem.MinMaxCurve speedModifier;

描述

曲线用于根据粒子生命周期控制粒子速度,而不影响粒子的方向。

其他资源: MinMaxCurve.

using UnityEngine;
using System.Collections;

[RequireComponent(typeof(ParticleSystem))] public class ExampleClass : MonoBehaviour { private ParticleSystem ps; public float hSliderValueSpeed = 1.0f;

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

var velocityOverLifetime = ps.velocityOverLifetime; velocityOverLifetime.enabled = true; velocityOverLifetime.space = ParticleSystemSimulationSpace.World;

AnimationCurve curve = new AnimationCurve(); curve.AddKey(0.0f, 0.0f); curve.AddKey(1.0f, 1.0f);

ParticleSystem.MinMaxCurve minMaxCurve = new ParticleSystem.MinMaxCurve(1.0f, curve);

velocityOverLifetime.speedModifier = minMaxCurve; }

void Update() { var velocityOverLifetime = ps.velocityOverLifetime; velocityOverLifetime.speedModifierMultiplier = hSliderValueSpeed; }

void OnGUI() { GUI.Label(new Rect(25, 40, 100, 30), "Speed");

hSliderValueSpeed = GUI.HorizontalSlider(new Rect(55, 45, 100, 30), hSliderValueSpeed, -50.0f, 50.0f); } }