Clear with the skybox.
// Clear with a skybox camera.clearFlags = CameraClearFlags.Skybox;
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Example() { camera.clearFlags = CameraClearFlags.Skybox; } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def Example() as void: camera.clearFlags = CameraClearFlags.Skybox