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.
Contents
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
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info