Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

WebCamTexture.isPlaying

public var isPlaying: bool;

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);
	}