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