Difference between revisions of "love.focus"

m
Line 1: Line 1:
 
{{newin|[[0.7.0]]|070|type=callback}}
 
{{newin|[[0.7.0]]|070|type=callback}}
 
 
Callback function triggered when window receives or loses focus.
 
Callback function triggered when window receives or loses focus.
 
== Function ==
 
== Function ==

Revision as of 13:18, 3 October 2012

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

Callback function triggered when window receives or loses focus.

Function

Synopsis

love.focus(f)

Arguments

boolean f
Window focus

Returns

Nothing.

Example

function love.load()
  text = "FOCUSED"
end

function love.draw()
  love.graphics.print(text,0,0)
end

function love.focus(f)
  if not f then
    text = "UNFOCUSED!!"
    print("LOST FOCUS")
  else
    text = "FOCUSED!"
    print("GAINED FOCUS")
  end
end

See Also

Other Languages