How the camera clears the background.
// Clear with background color (ignore any skyboxes) camera.clearFlags = CameraClearFlags.SolidColor;
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Example() { camera.clearFlags = CameraClearFlags.SolidColor; } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def Example() as void: camera.clearFlags = CameraClearFlags.SolidColor