1. 程式人生 > >unity獲取裝置解析度

unity獲取裝置解析度

裝置解析度

  1. using UnityEngine;    
  2. using System.Collections;    
  3. publicclass ExampleClass : MonoBehaviour {    
  4.     void Start() {    
  5.         Resolution[] resolutions = Screen.resolutions;    
  6.         //foreach (Resolution res in resolutions) {  
  7.         //}  
  8.         Screen.SetResolution(resolutions[0].width, resolutions[0].height, true
    );    
  9.     }    
  10. }