Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


SupportedResolutions

A list of all the supported device resolutions for taking pictures.
Read time 1 minuteLast updated 10 days ago

Definition

public static IEnumerable<Resolution> SupportedResolutions { get; }

Remarks

using UnityEngine;using System.Collections;using UnityEngine.Windows.WebCam;public class PhotoCaptureResolutionExample : MonoBehaviour{ // Use this for initialization void Start() { foreach (Resolution resolution in PhotoCapture.SupportedResolutions) { Debug.Log(resolution); } }}
Prints out a list of all the supported device resolutions that can be used when taking pictures.