LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

This version of Unity is unsupported.

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; } }