Legacy Documentation: Version 2018.2 (Go to current version)
LanguageEnglish
  • C#

Light.color

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public Color color;

Description

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.

using UnityEngine;

public class Example : MonoBehaviour { Light lt;

void Start() { lt = GetComponent<Light>(); }

// Darken the light completely over a period of 2 seconds. void Update() { lt.color -= (Color.white / 2.0f) * Time.deltaTime; } }

Another example:

using UnityEngine;

public class Example : MonoBehaviour { // Interpolate light color between two colors back and forth float duration = 1.0f; Color color0 = Color.red; Color color1 = Color.blue;

Light lt;

void Start() { lt = GetComponent<Light>(); }

void Update() { // set light color float t = Mathf.PingPong(Time.time, duration) / duration; lt.color = Color.Lerp(color0, color1, t); } }

Did you find this page useful? Please give it a rating: