{{oldin|[[0.9.0]]|090|type=function|text=Moved to the [[love.window]] module as [[love.window.setMode]]}}

Changes the window size, or the display mode if fullscreen.

If width or height is 0, setMode will use the width or height of the desktop. 

Changing the display mode may have side effects: for example, [[Canvas]]es will be cleared; make sure to save their contents beforehand.
== 関数 ==
=== 概要 ===
<source lang="lua">
success = love.graphics.setMode( width, height, fullscreen, vsync, fsaa )
</source>
=== 引数 ===
{{param (日本語)|number|width|Display width.}}
{{param (日本語)|number|height|Display height.}}
{{param (日本語)|boolean|fullscreen (false)|Fullscreen (true), or windowed (false).}}
{{param (日本語)|boolean|vsync (true)|True if LÖVE should wait for vsync, false otherwise.}}
{{param (日本語)|number|fsaa (0)|The number of MSAA samples.}}
=== 返値 ===
{{param (日本語)|boolean|success|True if successful, false otherwise.}}

== 注釈 ==
If you have disabled the screen in [[Config_Files|conf.lua]] and use this function to manually create the window, then you must not call any other [[love.graphics]].* function before this one. Doing so will result in undefined behavior and/or crashes.

== 関連 ==
* [[parent::love.graphics (日本語)]]
[[Category:Functions (日本語)]]
{{#set:Description=Changes the display mode.}}
{{#set:Since=000}}
{{#set:Removed=090}}
{{#set:Sub-Category=Window (日本語)}}
== そのほかの言語 ==
{{i18n (日本語)|love.graphics.setMode}}