Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseThe color with which the screen will be cleared.
Only used if clearFlags are set to CameraClearFlags.SolidColor (or CameraClearFlags.Skybox but the skybox is not set up).
#pragma strict // ping-pong animate background color public var color1: Color = Color.red; public var color2: Color = Color.blue; public var duration: float = 3.0F; var cam: Camera; function Start() { cam = GetComponent.<Camera>(); cam.clearFlags = CameraClearFlags.SolidColor; } function Update() { var t: float = Mathf.PingPong(Time.time, duration) / duration; cam.backgroundColor = Color.Lerp(color1, color2, t); }
// ping-pong animate background color using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public Color color1 = Color.red; public Color color2 = Color.blue; public float duration = 3.0F;
Camera cam;
void Start() { cam = GetComponent<Camera>(); cam.clearFlags = CameraClearFlags.SolidColor; }
void Update() { float t = Mathf.PingPong(Time.time, duration) / duration; cam.backgroundColor = Color.Lerp(color1, color2, t); } }
See Also: camera component, Camera.clearFlags