Version: 2018.2
public static Color ambientLight ;

説明

Flat Ambient Light の色

Flat Ambient Light は色を使用します。 ambientSkyColor と同じ値を持ちます。

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // Make the ambient lighting red RenderSettings.ambientLight = Color.red; } }