love.window.isMaximized

Available since LÖVE 0.10.2
This function is not supported in earlier versions.

Gets whether the Window is currently maximized.

The window can be maximized if it is not fullscreen and is resizable, and either the user has pressed the window's Maximize button or love.window.maximize has been called.

Function

Synopsis

maximized = love.window.isMaximized( )

Arguments

None.

Returns

boolean maximized
True if the window is currently maximized in windowed mode, false otherwise.

See Also

Other Languages