Class GameWindowMode
Specifies the display mode of a game window.
Inheritance
System.Object
GameWindowMode
Namespace: FlaxEngine
Assembly: FlaxEngine.CSharp.dll
Syntax
[Unmanaged]
public sealed class GameWindowMode : Enum
Fields
Borderless
The window behaves like in Windowed mode but has no borders.
Declaration
public const GameWindowMode Borderless
Field Value
GameWindowMode
|
Fullscreen
The window takes up the full screen exclusively.
Declaration
public const GameWindowMode Fullscreen
Field Value
GameWindowMode
|
FullscreenBorderless
Same as in Borderless, but is of the size of the screen.
Declaration
public const GameWindowMode FullscreenBorderless
Field Value
GameWindowMode
|
value__
Declaration
public int value__
Field Value
System.Int32
|
Windowed
The window has borders and does not take up the full screen.
Declaration
public const GameWindowMode Windowed
Field Value
GameWindowMode
|