# Skybox

> Clear with the skybox.

## Definition

* **Type:** Field
* **Namespace:** [UnityEngine.Rendering](/engine/6000.6/script-reference/unityengine/rendering.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
Skybox = 1
```

### Remarks

If a skybox is not set up, the Reflection Probe will clear with a [ReflectionProbe.backgroundColor](/engine/6000.6/script-reference/unityengine/reflectionprobe/backgroundcolor.md). Additional Resources: [ReflectionProbe.clearFlags](/engine/6000.6/script-reference/unityengine/reflectionprobe/clearflags.md) property.

### Examples

```csharp
using UnityEngine;
using System.Collections;


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

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