Files
webRtc/Assets/WebCamDevice.cs
zhangzheng 1bb1fee5cc 111
2026-02-27 18:35:40 +08:00

14 lines
330 B
C#

using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour
{
// Gets the list of devices and prints them to the console.
void Start()
{
WebCamDevice[] devices = WebCamTexture.devices;
for (int i = 0; i < devices.Length; i++)
Debug.Log(devices[i].name);
}
}