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

ParticleSystemRenderer.maxParticleSize

建议进行更改

成功!

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

关闭

提交失败

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

关闭

取消

public float maxParticleSize;

说明

限制最大粒子大小。

粒子可能会占用非常高的填充率。使用此设置可确保当粒子非常接近观察者时不会占用太多性能。

using UnityEngine;
using System.Collections;

[RequireComponent(typeof(ParticleSystem))] public class ExampleClass : MonoBehaviour {

private ParticleSystem ps; private ParticleSystemRenderer psr; public float minSize = 0.0f; public float maxSize = 1.0f;

void Start() {

ps = GetComponent<ParticleSystem>(); psr = GetComponent<ParticleSystemRenderer>();

var main = ps.main; main.startSize = new ParticleSystem.MinMaxCurve(0.1f, 5.0f); }

void Update() { psr.minParticleSize = minSize; psr.maxParticleSize = maxSize; }

void OnGUI() { GUI.Label(new Rect(25, 40, 200, 30), "Minimum Screen Space Size"); GUI.Label(new Rect(25, 80, 200, 30), "Maximum Screen Space Size");

minSize = GUI.HorizontalSlider(new Rect(245, 45, 100, 30), minSize, 0.0f, 1.0f); maxSize = GUI.HorizontalSlider(new Rect(245, 85, 100, 30), maxSize, 0.0f, 1.0f); } }