Screen.currentResolution 当前分辨率

static var currentResolution : Resolution[]

Description描述

The current screen resolution (Read Only).

当前屏幕的分辨率。(只读)

If the player is running in window mode, this returns the current resolution of the desktop.

如果玩家是运行在window系统,返回当前桌面的分辨率。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		print(Screen.currentResolution);
	}
}
print(Screen.currentResolution);
最后修改:2011年1月17日 Monday 18:45

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。