Version: 2017.2
public bool isPlaying ;

Descripción

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