love.focus (Español)

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


Función callback ejecutada cuando la ventana obtiene o pierde el foco.

Función

Sinopsis

love.focus(f)

Argumentos

boolean (Español) f
Foco de la ventana

Retornos

Nada.

Ejemplo

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

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

function love.focus(f)
  if not f then
    text = "DESENFOCADO!!"
    print("FOCO PERDIDO")
  else
    text = "ENFOCADO!"
    print("FOCO ADQUIRIDO")
  end
end

Ve También

Otros Idiomas