# WebCamKind

> Enum representing the different types of web camera device.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEngine](/engine/6000.5/script-reference/unityengine.md)
* **Assembly:** UnityEngine.AudioModule

```csharp
public enum WebCamKind
```

## Remarks

On iOS devices, the [WebCamDevice.kind](/engine/6000.5/script-reference/unityengine/webcamdevice/kind.md) is reported directly by the hardware. On Android devices, the hardware does not report this value, so Unity determines the [WebCamDevice.kind](/engine/6000.5/script-reference/unityengine/webcamdevice/kind.md) by calculating the [Equivalent Focal Length](https://en.wikipedia.org/wiki/35_mm_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](/engine/6000.5/script-reference/unityengine/webcamkind/ultrawideangle.md) or [WebCamKind.Telephoto](/engine/6000.5/script-reference/unityengine/webcamkind/telephoto.md). As there is currently no web API that returns the focal length of a webcam device, the WebGL applications always return [WebCamDevice.kind](/engine/6000.5/script-reference/unityengine/webcamdevice/kind.md) as WideAngle.

Additional Resources: [WebCamDevice.kind](/engine/6000.5/script-reference/unityengine/webcamdevice/kind.md).

## Fields

| Value                                                                                      | Description                                                                                                                                |
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ |
| [ColorAndDepth](/engine/6000.5/script-reference/unityengine/webcamkind/coloranddepth.md)   | Camera which supports synchronized color and depth data (currently these are only dual back and true depth cameras on latest iOS devices). |
| [Telephoto](/engine/6000.5/script-reference/unityengine/webcamkind/telephoto.md)           | A Telephoto camera device. These devices have a longer focal length than a wide-angle camera.                                              |
| [UltraWideAngle](/engine/6000.5/script-reference/unityengine/webcamkind/ultrawideangle.md) | Ultra wide angle camera. These devices have a shorter focal length than a wide-angle camera.                                               |
| [Unknown](/engine/6000.5/script-reference/unityengine/webcamkind/unknown.md)               | The camera type is unknown.                                                                                                                |
| [WideAngle](/engine/6000.5/script-reference/unityengine/webcamkind/wideangle.md)           | Wide angle (default) camera.                                                                                                               |
