Views
love.focus (Deutsch)
Available since LÖVE 0.7.0 |
This callback is not supported in earlier versions. |
Eine Rückruffunktion, welche ausgeführt wird, wenn das Fenster den Fokus erhält oder verliert.
Funktion
Überblick
love.focus( f )
Argumente
boolean (Deutsch) f
- Ob das Fenster fokussiert ist.
Rückgabewerte
Keine.
Beispiele
function love.load()
text = "FOKUSSIERT"
end
function love.draw()
love.graphics.print(text,0,0)
end
function love.focus(f)
if not f then
text = "ENTFOKUSSIERT!!"
print("FOKUS VERLOREN")
else
text = "FOKUSSIERT!"
print("FOKUS ERHALTEN")
end
end
text = "FOKUSSIERT"
end
function love.draw()
love.graphics.print(text,0,0)
end
function love.focus(f)
if not f then
text = "ENTFOKUSSIERT!!"
print("FOKUS VERLOREN")
else
text = "FOKUSSIERT!"
print("FOKUS ERHALTEN")
end
end
Siehe auch
Andere Sprachen
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