Version: 2018.1
public static Color ambientLight ;

説明

Flat Ambient Light の色

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

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { RenderSettings.ambientLight = Color.red; } }