Difference between revisions of "love.graphics.checkMode (简体中文)"

(Created page with "Checks if a display mode is supported. 检查是否支持这种显示模式. == Function == === Synopsis === <source lang="lua"> supported = love.graphics.checkMode( width, heigh...")
 
(Parent correction.)
Line 13: Line 13:
 
{{param|boolean|supported|支持返回true.不支持返回false}}
 
{{param|boolean|supported|支持返回true.不支持返回false}}
 
== See Also ==
 
== See Also ==
* [[parent::love.graphics]]
+
* [[parent::love.graphics (简体中文)]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Checks if a display mode is supported.检查是否支持这种显示模式.}}
 
{{#set:Description=Checks if a display mode is supported.检查是否支持这种显示模式.}}

Revision as of 02:36, 15 April 2012

Checks if a display mode is supported. 检查是否支持这种显示模式.

Function

Synopsis

supported = love.graphics.checkMode( width, height, fullscreen )

Arguments

number width
显示宽度.
number height
显示高度.
boolean fullscreen
是否是全屏

Returns

boolean supported
支持返回true.不支持返回false

See Also


Other Languages