{{newin|[[0.9.0]]|090|type=callback}}
Callback function triggered when window is minimized/hidden or unminimized by the user.
== Function ==
=== Synopsis ===
<source lang="lua">
love.visible( visible )
</source>
=== Arguments ===
{{param|boolean|visible|True if the window is visible, false if it isn't.}}
=== Returns ===
Nothing.
== Example ==
<source lang="lua">
function love.visible(v)
    print(v and "Window is visible!" or "Window is not visible!");
end
</source>
== See Also ==
* [[parent::love]]
[[Category:Callbacks]]
{{#set:Description=Callback function triggered when window is shown or hidden.}}
{{#set:Subcategory=Window}}
== Other Languages ==
{{i18n|love.visible}}