Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

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

WebCamTexture.isPlaying

Switch to Manual
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);
	}