欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

unity获取设备分辨率

程序员文章站 2022-04-03 12:31:28
...

unity获取设备分辨率

设备分辨率

using UnityEngine;  
using System.Collections;  
  
public class ExampleClass : MonoBehaviour {  
    void Start() {  
        Resolution[] resolutions = Screen.resolutions;  
        //foreach (Resolution res in resolutions) {  
             
        //}  
        Screen.SetResolution(resolutions[0].width, resolutions[0].height, true);  
    }  
}  




posted @ 2016-12-05 16:33 00000000O 阅读(...) 评论(...) 编辑 收藏