A linear value of an sRGB color.
Colors are typically expressed in sRGB color space. This property returns "linearized" color value, i.e. with inverse of sRGB gamma curve applied.
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);
}
}