Version: 2017.2
public Color linear ;

描述

sRGB 颜色的线性值。

颜色一般是用 sRGB 颜色空间表示的。该属性返回“线性化”颜色值, 即,应用了倒转的 sRGB 伽玛曲线。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Color color = new Color(0.3F, 0.4F, 0.6F); void Example() { print(color.linear); } }