用于拍摄照片的所有受支持的设备分辨率列表。
using UnityEngine;
using System.Collections;
using UnityEngine.VR.WSA.WebCam;
public class PhotoCaptureResolutionExample : MonoBehaviour
{
// Use this for initialization
void Start()
{
foreach (Resolution resolution in PhotoCapture.SupportedResolutions)
{
Debug.Log(resolution);
}
}
}
打印一份列表,其中包含可在拍照时使用的所有受支持的设备分辨率。