Hi,
I try to use WebCamTexture.Play for android (Samsung S9+) but when I execute this scripts:
private WebCamTexture webcamTexture;
public RawImage _image;
void Start()
{
WebCamDevice[] devices = WebCamTexture.devices;
if (devices.Length ==0)
{
return;
}
for (int i =0; i
↧