Version: 2022.3
言語: 日本語
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; } }