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

ParticleSystem.MainModule.startColor

建议更改

成功!

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

关闭

提交失败

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

关闭

取消

切换至手册
public ParticleSystem.MinMaxGradient startColor;

描述

粒子系统首次生成粒子时的初始颜色。

其他资源:MinMaxGradient

using UnityEngine;
using System.Collections;

[RequireComponent(typeof(ParticleSystem))] public class ExampleClass : MonoBehaviour { private ParticleSystem ps; public float hSliderValueR = 0.0F; public float hSliderValueG = 0.0F; public float hSliderValueB = 0.0F; public float hSliderValueA = 1.0F;

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

void Update() { var main = ps.main; main.startColor = new Color(hSliderValueR, hSliderValueG, hSliderValueB, hSliderValueA); }

void OnGUI() { GUI.Label(new Rect(25, 40, 100, 30), "Red"); GUI.Label(new Rect(25, 70, 100, 30), "Green"); GUI.Label(new Rect(25, 100, 100, 30), "Blue"); GUI.Label(new Rect(25, 130, 100, 30), "Alpha");

hSliderValueR = GUI.HorizontalSlider(new Rect(95, 45, 100, 30), hSliderValueR, 0.0F, 1.0F); hSliderValueG = GUI.HorizontalSlider(new Rect(95, 75, 100, 30), hSliderValueG, 0.0F, 1.0F); hSliderValueB = GUI.HorizontalSlider(new Rect(95, 105, 100, 30), hSliderValueB, 0.0F, 1.0F); hSliderValueA = GUI.HorizontalSlider(new Rect(95, 135, 100, 30), hSliderValueA, 0.0F, 1.0F); } }