包含此页的版本:
不含此页的版本:
平面环境光照颜色。
平面环境光照模式会使用颜色,其值与 ambientSkyColor 的值相同。
using UnityEngine;public class Example : MonoBehaviour { void Start() { // Make the ambient lighting red RenderSettings.ambientLight = Color.red; } }
See Also: ambientMode, The Lighting window.