Version: 2021.3

Screen.currentResolution

切换到手册
public static Resolution currentResolution ;

描述

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

Returns the current screen resolution (read only). If the player is running in windowed mode, this returns the current dimensions of the game window in pixels and the display refresh rate. If you are working with VR devices, use VRSettings.eyeTextureWidth and VRSettings.eyeTextureHeight instead.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { print(Screen.currentResolution); } }