Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


ambientLight

Flat ambient lighting color.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public static Color ambientLight { get; set; }

Remarks

Flat ambient lighting mode uses color. It has the same value as RenderSettings.ambientSkyColor.
using UnityEngine;public class Example : MonoBehaviour{ void Start() { // Make the ambient lighting red RenderSettings.ambientLight = Color.red; }}