Difference between revisions of "love.graphics.isCreated"

 
m (Fixed Description property.)
 
(9 intermediate revisions by 6 users not shown)
Line 1: Line 1:
 +
{{oldin|[[0.9.0]]|090|type=function|text=Moved to the [[love.window]] module as [[love.window.isCreated]]}}
  
 
+
Checks if the window has been created.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
True = love.graphics.isCreated( )
+
created = love.graphics.isCreated( )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
{{param|boolean|True|if display has been set, false otherwise.}}
+
{{param|boolean|created|True if the window has been created, false otherwise.}}
 
== See Also ==
 
== See Also ==
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=}}
+
{{#set:Description=Checks if the window has been created.}}
 +
{{#set:Since=000}}
 +
{{#set:Sub-Category=Window}}
 +
== Other Languages ==
 +
{{i18n|love.graphics.isCreated}}

Latest revision as of 15:17, 9 September 2016

Removed in LÖVE 0.9.0
Moved to the love.window module as love.window.isCreated.


Checks if the window has been created.

Function

Synopsis

created = love.graphics.isCreated( )

Arguments

None.

Returns

boolean created
True if the window has been created, false otherwise.

See Also


Other Languages