Flat ambient lighting color.
Flat ambient lighting mode uses color. It has the same value as ambientSkyColor.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { RenderSettings.ambientLight = Color.red; } }
See Also: ambientMode, Lighting Window.