Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

WebCamTexture.isPlaying

var isPlaying: bool;
bool isPlaying;
isPlaying as 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);
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Start() {
        WebCamTexture webcamTexture = new WebCamTexture();
        webcamTexture.Play();
        Debug.Log(webcamTexture.isPlaying);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Start() as void:
		webcamTexture as WebCamTexture = WebCamTexture()
		webcamTexture.Play()
		Debug.Log(webcamTexture.isPlaying)