Version: 2021.2
언어: 한국어

Screen.currentResolution

매뉴얼로 전환
public static Resolution currentResolution ;

설명

The current screen resolution (Read Only).

Returns the current screen resolution (read only). If the player is running in windowed mode, this returns the current resolution of the desktop. 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); } }