Flat Ambient Light の色
Flat Ambient Light は色を使用します。 ambientSkyColor と同じ値を持ちます。
// Make the ambient lighting red RenderSettings.ambientLight = Color.red;
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { RenderSettings.ambientLight = Color.red; } }
See Also: ambientMode, Lighting Window.