Legacy Documentation: Version 5.5
LanguageEnglish
  • C#
  • JS

Script language

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

WebCamTexture.isPlaying

public bool isPlaying;

Description

Returns if the camera is currently playing.

using UnityEngine;
using System.Collections;

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