Difference between revisions of "FullscreenType"

(Created page)
 
m
Line 3: Line 3:
 
== Constants ==
 
== Constants ==
 
;normal: Standard fullscreen mode. Changes the display mode (actual resolution) of the monitor.
 
;normal: Standard fullscreen mode. Changes the display mode (actual resolution) of the monitor.
;desktop: Sometimes known as [http://pcgamingwiki.com/wiki/Borderless_fullscreen_windowed borderless fullscreen windowed] mode. A borderless screen-sized window is created which sits on top of all desktop GUI elements (such as the Windows taskbar and the Mac OS X dock.) The window is automatically resized to match the dimensions of the desktop, and its dimensions cannot be changed.
+
;desktop: Sometimes known as [http://pcgamingwiki.com/wiki/Borderless_fullscreen_windowed borderless fullscreen windowed] mode. A borderless screen-sized window is created which sits on top of all desktop GUI elements (such as the Windows taskbar and the Mac OS X dock.) The window is automatically resized to match the dimensions of the desktop, and its size cannot be changed.
 
== Notes ==
 
== Notes ==
 
In normal fullscreen mode, if a window size is used which does not match one of the monitor's supported display modes, the window will be resized to the next largest display mode.
 
In normal fullscreen mode, if a window size is used which does not match one of the monitor's supported display modes, the window will be resized to the next largest display mode.
  
 
Normal fullscreen mode is sometimes avoided by users because it can cause issues in some Window Managers and with multi-monitor setups, and in OS X it prevents switching to a different program until fullscreen mode is exited.
 
Normal fullscreen mode is sometimes avoided by users because it can cause issues in some Window Managers and with multi-monitor setups, and in OS X it prevents switching to a different program until fullscreen mode is exited.
 
 
 
== See Also ==
 
== See Also ==
 
* [[parent::love.window]]
 
* [[parent::love.window]]
 
* [[love.window.setMode]]
 
* [[love.window.setMode]]
 
* [[love.window.setFullscreen]]
 
* [[love.window.setFullscreen]]
 +
* [[love.resize]]
  
 
[[Category:Enums]]
 
[[Category:Enums]]

Revision as of 00:11, 27 August 2013

Available since LÖVE 0.9.0
This enum is not supported in earlier versions.

Types of fullscreen modes.

Constants

normal
Standard fullscreen mode. Changes the display mode (actual resolution) of the monitor.
desktop
Sometimes known as borderless fullscreen windowed mode. A borderless screen-sized window is created which sits on top of all desktop GUI elements (such as the Windows taskbar and the Mac OS X dock.) The window is automatically resized to match the dimensions of the desktop, and its size cannot be changed.

Notes

In normal fullscreen mode, if a window size is used which does not match one of the monitor's supported display modes, the window will be resized to the next largest display mode.

Normal fullscreen mode is sometimes avoided by users because it can cause issues in some Window Managers and with multi-monitor setups, and in OS X it prevents switching to a different program until fullscreen mode is exited.

See Also

Other Languages