Version: Unity 6.6 Alpha (6000.6)
LanguageEnglish
  • C#

QNXGameWindowCreationSettings Constructor

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

Declaration

public QNXGameWindowCreationSettings(string title, int width, int height, Vector2Int position, int cameraDisplayIndex, DisplayInfo displayInfo, FullScreenMode fullScreenMode, bool resizable, TransparencyMode transparencyMode, int zOrder, string windowClass, int pipelineId, AlphaMode alphaMode);

Parameters

Parameter Description
title The title of the window.
width The width of the window in pixels.
height The height of the window in pixels.
position The position of the window relative to the top-left corner of the display.
cameraDisplayIndex The display index for the camera to render to.
displayInfo Information about the display where the window will be created.
fullScreenMode The fullscreen mode for the window (default is Windowed).
resizable Whether the window can be resized (default is false).
transparencyMode The transparency mode for the window (default is Default).
zOrder The z-order value for the window (default is int.MinValue).
windowClass The QNX Screen window class string (default is null).
pipelineId The QNX Screen pipeline ID (default is int.MinValue).
alphaMode The alpha blending mode for the window (default is Default).

Description

Creates a new QNXGameWindowCreationSettings with the specified parameters including fullscreen mode.


Declaration

public QNXGameWindowCreationSettings(string title, int width, int height, Vector2Int position, int cameraDisplayIndex, DisplayInfo displayInfo, TransparencyMode transparencyMode, int zOrder, string windowClass, int pipelineId, AlphaMode alphaMode);

Parameters

Parameter Description
title The title of the window.
width The width of the window in pixels.
height The height of the window in pixels.
position The position of the window relative to the top-left corner of the display.
cameraDisplayIndex The display index for the camera to render to.
displayInfo Information about the display where the window will be created.
transparencyMode The transparency mode for the window (default is Default).
zOrder The z-order value for the window (default is int.MinValue).
windowClass The QNX Screen window class string (default is null).
pipelineId The QNX Screen pipeline ID (default is int.MinValue).
alphaMode The alpha blending mode for the window (default is Default).

Description

Creates a new QNXGameWindowCreationSettings with the specified parameters in windowed mode.