返回介绍

Light.color 颜色

发布于 2019-12-18 15:37:55 字数 2374 浏览 1102 评论 0 收藏 0

JavaScript => public var color: Color;
C# => 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.

通过修改灯光强度你可以改变灯光的颜色亮度。灯光总是增加照明,因此光照颜色是黑色与没有光照一样。

JavaScript:

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;
}

Another example:

JavaScript:

// 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);
}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public Light lt;
    void Start() {
        lt = GetComponent<Light>();
    }
    void Update() {
        lt.color -= Color.white / 2.0F * Time.deltaTime;
    }
}

Another example:

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public float duration = 1.0F;
    public Color color0 = Color.red;
    public Color color1 = Color.blue;
    public Light lt;
    void Start() {
        lt = GetComponent<Light>();
    }
    void Update() {
        float t = Mathf.PingPong(Time.time, duration) / duration;
        lt.color = Color.Lerp(color0, color1, t);
    }
}

light

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文