Difference between revisions of "love.mousefocus (Deutsch)"

(German Translation.)
 
m (Shorten the example.)
 
Line 12: Line 12:
 
== Beispiele ==
 
== Beispiele ==
 
<source lang="lua">
 
<source lang="lua">
function love.load()
 
  text = "Die Maus ist im Fenster!"
 
end
 
 
 
function love.draw()
 
function love.draw()
  love.graphics.print(text,0,0)
+
    love.graphics.print(text,0,0)
 
end
 
end
  
 
function love.mousefocus(f)
 
function love.mousefocus(f)
  if not f then
+
    if not f then
    text = "Die Maus ist nicht im Fenster!"
+
        text = "Die Maus ist nicht im Fenster!"
    print("LOST MOUSE FOCUS")
+
        print("LOST MOUSE FOCUS")
  else
+
    else
    text = "Die Maus ist im Fenster!"
+
        text = "Die Maus ist im Fenster!"
    print("GAINED MOUSE FOCUS")
+
        print("GAINED MOUSE FOCUS")
  end
+
    end
 
end
 
end
 
</source>
 
</source>

Latest revision as of 12:24, 17 January 2015

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

Eine Rückruffunktion, welche ausgeführt wird, sobald das Fenster den Mausfokus verliert oder erlangt.

Funktion

Übersicht

love.mousefocus( f )

Argumente

boolean (Deutsch) f
Wahr wenn die Maus auf das Fenster fokussiert ist. Falsch, wenn nicht.

Rückgabewerte

Keine.

Beispiele

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

function love.mousefocus(f)
    if not f then
        text = "Die Maus ist nicht im Fenster!"
        print("LOST MOUSE FOCUS")
    else
        text = "Die Maus ist im Fenster!"
        print("GAINED MOUSE FOCUS")
    end
end

Siehe auch


Andere Sprachen