Version: 2018.3 (switch to 2019.1)
LanguageEnglish
  • C#

ReflectionProbeClearFlags.Skybox

Description

Clear with the skybox.

If a skybox is not set up, the Reflection Probe will clear with a backgroundColor. See Also: ReflectionProbe.clearFlags property.

using UnityEngine;
using System.Collections;

public class ExampleScript : MonoBehaviour { void Start() { ReflectionProbe probe = GetComponent<ReflectionProbe>();

// Clear with skybox probe.clearFlags = UnityEngine.Rendering.ReflectionProbeClearFlags.Skybox; } }

Did you find this page useful? Please give it a rating: