WebCamKind
Enum representing the different types of web camera device.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Enum
- Namespace: UnityEngine
- Assembly: UnityEngine.AudioModule
public enum WebCamKind
Remarks
On iOS devices, the WebCamDevice.kind is reported directly by the hardware. On Android devices, the hardware does not report this value, so Unity determines the WebCamDevice.kind by calculating the Equivalent Focal Length from a calculation based on the reported focal length and matrix size. Therefore, on some Android devices, the default camera may be detected as WebCamKind.UltraWideAngle or WebCamKind.Telephoto. As there is currently no web API that returns the focal length of a webcam device, the WebGL applications always return WebCamDevice.kind as WideAngle.
Additional Resources: WebCamDevice.kind.
Fields
Value | Description |
|---|---|
| ColorAndDepth | Camera which supports synchronized color and depth data (currently these are only dual back and true depth cameras on latest iOS devices). |
| Telephoto | A Telephoto camera device. These devices have a longer focal length than a wide-angle camera. |
| UltraWideAngle | Ultra wide angle camera. These devices have a shorter focal length than a wide-angle camera. |
| Unknown | The camera type is unknown. |
| WideAngle | Wide angle (default) camera. |