平面环境光照颜色。
平面环境光照模式会使用颜色,其值与 ambientSkyColor 的值相同。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { RenderSettings.ambientLight = Color.red; } }
另请参阅:ambientMode、Lighting Window。