Hey dmitry,
you can get the resolution by calling the Screen class.
Width dimensions: Screen.currentResolution.width
Height dimensions: Screen.currentResolution.height
Example:
Debug.Log("Resolution: width" + Screen.currentResolution.width + "height" + Screen.currentResolution.height);
code_warrior
↧