Logo


search API (or start typing anywhere)


WindowConfig

snow.types.WindowConfig defined in snow.types.Types

Window configuration information for creating windows


typedef


 

Members


y
y : Null<Int>
window y at creation. Leave this alone to use the OS default.
x
x : Null<Int>
window x at creation. Leave this alone to use the OS default.
width
width : Null<Int>
window width at creation, default: 960
true_fullscreen
true_fullscreen : Null<Bool>
If false, the users native window/desktop resolution will be used instead of the specified window size. default: false On native, changing the users video mode is less than ideal, so true_fullscreen is commonly discouraged.
title
title : Null<String>
window title, default: ‘snow app’
resizable
resizable : Null<Bool>
allow the window to be resized, default: true
no_input
no_input : Null<Bool>
disables input arriving at/from this window. default: false
height
height : Null<Int>
window height at creation, default: 640
fullscreen
fullscreen : Null<Bool>
create in fullscreen, default: false, mobile true
borderless
borderless : Null<Bool>
create as a borderless window, default: false