Screen.SetResolutionstatic function SetResolution (width : int, height : int, fullscreen : bool, preferredRefreshRate : int = 0) : voidDescriptionSwitches the screen resolution. A width by height resolution will be used. If no matching resolution is supported, the closest one will be used.
If preferredRefreshRate is 0 (default) Unity will switch to the highest refresh rate supported by the monitor. In the web player you may only switch resolutions after the user has clicked on the content. The recommended way of doing it is to switch resolutions only when the user clicks on a designated button. A resolution switch does not happen immediately; it will actually happen when the current frame is finished. See Also: resolutions property. |
