The color of the light.
To modify the light intensity you change light's color luminance. Lights always add illumination, so a light with a black color is the same as no light at all. See Also: Light component.
var lt: Light;
function Start () { lt = GetComponent.<Light>(); }
// Darken the light completely over a period of 2 seconds. function Update () { lt.color -= Color.white / 2.0 * Time.deltaTime; }
no example available in C#
Another example:
// Interpolate light color between two colors back and forth var duration : float = 1.0; var color0 : Color = Color.red; var color1 : Color = Color.blue;
var lt: Light;
function Start () { lt = GetComponent.<Light>(); }
function Update () { // set light color var t : float = Mathf.PingPong(Time.time, duration) / duration; lt.color = Color.Lerp(color0, color1, t); }
no example available in C#
Did you find this page useful? Please give it a rating: