返回介绍

Screen.resolutions 分辨率列表

发布于 2019-12-18 15:38:30 字数 1756 浏览 1189 评论 0 收藏 0

JavaScript => public static var resolutions: Resolution[];
C# => public static Resolution[] resolutions;

Description 描述

All fullscreen resolutions supported by the monitor (Read Only).

显示器支持的所有全屏分辨率。(只读)

The returned resolutions are sorted by width, lower resolutions come first. Note that the array will always be empty on Android devices since the resolution is variable (within reason) and so there is no restricted set of resolutions to choose from.

返回分辨率的列表,安装宽带排序,较低的分辨率排在前面。注意,在Android设备该列表总是为空,因为该分辨率是变化的,所以选择没有限制的分辨率。

JavaScript:

	function Start()
	{
		var resolutions : Resolution[] = Screen.resolutions;
		// Print the resolutions
		for (var res in resolutions) {
			print(res.width + "x" + res.height);
		}
		// Switch to the lowest supported fullscreen resolution
		Screen.SetResolution (resolutions[0].width, resolutions[0].height, true);
	};

C#:

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

Screen

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文