Clear with a background color.
See Also: Camera.clearFlags property, camera component, Camera.backgroundColor property.
camera.clearFlags = CameraClearFlags.SolidColor;
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
void Example() {
camera.clearFlags = CameraClearFlags.SolidColor;
}
}
import UnityEngine
import System.Collections
class example(MonoBehaviour):
def Example():
camera.clearFlags = CameraClearFlags.SolidColor