Version: 5.5
public bool isPlaying ;

説明

カメラが再生中かどうか

using UnityEngine;
using System.Collections;

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