Clear with the skybox.
If a skybox is not set up, the Reflection Probe will clear with a backgroundColor. See Also: ReflectionProbe.clearFlags property.
#pragma strict public class ExampleScript extends MonoBehaviour { function Start() { var probe: ReflectionProbe = GetComponent.<ReflectionProbe>(); // Clear with skybox probe.clearFlags = UnityEngine.Rendering.ReflectionProbeClearFlags.Skybox; } }
using UnityEngine; using System.Collections;
public class ExampleScript : MonoBehaviour { void Start() { ReflectionProbe probe = GetComponent<ReflectionProbe>();
// Clear with skybox probe.clearFlags = UnityEngine.Rendering.ReflectionProbeClearFlags.Skybox; } }