currentResolution
The current screen resolution (Read Only).
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public static Resolution currentResolution { get; }
Remarks
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 XRSettings.eyeTextureWidth and XRSettings.eyeTextureHeight instead.
Examples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { print(Screen.currentResolution); }}