WebCamTexture.isPlaying Manual     Reference     Scripting  
Scripting > Runtime Classes > WebCamTexture
WebCamTexture.isPlaying

var isPlaying : boolean

Description

Returns if the camera is currently playing

// Tries to start the camera and outputs to the console if is was sucessful or not.
function Start () {
var webcamTexture : WebCamTexture = WebCamTexture();
webcamTexture.Play();
Debug.Log(webcamTexture.isPlaying);
}