# SolidColor

> Clear with a background color.

## Definition

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

```csharp
SolidColor = 2
```

### Remarks

Additional Resources: [ReflectionProbe.clearFlags](/engine/6000.7/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 background color (ignore any skyboxes)
        probe.clearFlags = UnityEngine.Rendering.ReflectionProbeClearFlags.SolidColor;
    }
}
```
