ColorConstructor

切换到手册
public Color (float r, float g, float b, float a);

参数

r红色分量。
g绿色分量。
b蓝色分量。
aAlpha 分量。

描述

使用给定的 r、g、b、a 分量构造新 Color。

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Color newColor = new Color(0.3f, 0.4f, 0.6f, 0.3f); } }

public Color (float r, float g, float b);

参数

r红色分量。
g绿色分量。
b蓝色分量。

描述

使用给定的 r、g、b 分量构造新 Color,然后将 a 设置为 1。

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Color newColor = new Color(0.3f, 0.4f, 0.6f); } }