Color.linear
var linear: Color;
Color linear;
linear as Color
Description

A version of the color that has had the inverse gamma curve applied.

	var color : Color = Color (.3, .4, .6);
	print(color.linear);
using UnityEngine;
using System.Collections;

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

public class Example(MonoBehaviour):

	public color as Color = Color(0.3F, 0.4F, 0.6F)

	def Example() as void:
		print(color.linear)