Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Color.gamma

var gamma: Color;
Color gamma;
gamma as Color

Description

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

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

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

public class ExampleClass(MonoBehaviour):

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

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