love.mousefocus (Italiano)

Disponibile da LÖVE 0.9.0
Questa/o callback non è supportata/o nelle versioni precedenti.

Callback chiamata quando la finestra acquisisce o perde il focus del mouse.

Funzione

Sinossi

love.mousefocus( focus )

Argomenti

boolean (Italiano) focus
Vero se la finestra ha il focus, falso altrimenti.

Restituisce

Niente.

Esempi

function love.load()
  text = "Il mouse è dentro la finestra!"
end

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

function love.mousefocus(f)
  if not f then
    text = "Il mouse è dentro la finestra!"
    print("LOST MOUSE FOCUS")
  else
    text = "Il mouse è fuori dalla finestra!"
    print("GAINED MOUSE FOCUS")
  end
end

Vedi anche


In altre lingue