Manual     Reference     Scripting  
  
Scripting > Runtime Classes > Screen   
  • Menu
  • Overview
  • Runtime Classes
  • Attributes
  • Enumerations
  • Editor Classes
  • Enumerations
  • History
  • Index
  • Screen
  • All Members
  • Class Variables
  • autorotateToLandscapeLeft
  • autorotateToLandscapeRight
  • autorotateToPortrait
  • autorotateToPortraitUpsideDown
  • currentResolution
  • fullScreen
  • height
  • lockCursor
  • orientation
  • resolutions
  • showCursor
  • sleepTimeout
  • width
  • Class Functions
  • SetResolution

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.

JavaScripts
using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Awake() {
print(Screen.currentResolution);
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Awake():
print(Screen.currentResolution)