Version: 2017.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Display.SetParams

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public method SetParams(width: int, height: int, x: int, y: int): void;
public void SetParams(int width, int height, int x, int y);

Parameters

widthChange Window Width (Windows Only).
heightChange Window Height (Windows Only).
xChange Window Position X (Windows Only).
yChange Window Position Y (Windows Only).

Description

Set rendering size and position on screen (Windows only).

To change the size and position of primary display you must also activate it by calling Display.displays[0].Activate(0, 0, 0);

See Also: SetRenderingResolution.