Difference between revisions of "love.visible"

(Created page)
 
m
 
(3 intermediate revisions by 2 users not shown)
Line 4: Line 4:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
love.visible( v )
+
love.visible( visible )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|boolean|v|Window visibility.}}
+
{{param|boolean|visible|True if the window is visible, false if it isn't.}}
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.
Line 13: Line 13:
 
<source lang="lua">
 
<source lang="lua">
 
function love.visible(v)
 
function love.visible(v)
  if v then
+
     print(v and "Window is visible!" or "Window is not visible!");
     print("Window is not visible!")
 
  else
 
    print("Window is visible!")
 
  end
 
 
end
 
end
 
</source>
 
</source>
Line 24: Line 20:
 
[[Category:Callbacks]]
 
[[Category:Callbacks]]
 
{{#set:Description=Callback function triggered when window is shown or hidden.}}
 
{{#set:Description=Callback function triggered when window is shown or hidden.}}
 +
{{#set:Subcategory=Window}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.visible}}
 
{{i18n|love.visible}}

Latest revision as of 22:31, 7 March 2019

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

Callback function triggered when window is minimized/hidden or unminimized by the user.

Function

Synopsis

love.visible( visible )

Arguments

boolean visible
True if the window is visible, false if it isn't.

Returns

Nothing.

Example

function love.visible(v)
    print(v and "Window is visible!" or "Window is not visible!");
end

See Also


Other Languages