Difference between revisions of "love.focus (Español)"

(Update translation.)
m
 
Line 1: Line 1:
 
{{newin|[[0.7.0]]|070|type=callback}}
 
{{newin|[[0.7.0]]|070|type=callback}}
  
Función ''callback'' ejecutada cuando la ventana obtiene o pierde el foco.
+
Función callback ejecutada cuando la ventana obtiene o pierde el foco.
 
== Función ==
 
== Función ==
 
=== Sinopsis ===
 
=== Sinopsis ===
Line 15: Line 15:
  
 
function love.load()
 
function love.load()
   text = "ENFOCADO"
+
   texto = "ENFOCADO"
 
end
 
end
  
 
function love.draw()
 
function love.draw()
   love.graphics.print(text,0,0)
+
   love.graphics.print(texto,0,0)
 
end
 
end
  
 
function love.focus(f)
 
function love.focus(f)
 
   if not f then
 
   if not f then
     text = "DESENFOCADO!!"
+
     texto = "DESENFOCADO!!"
 
     print("FOCO PERDIDO")
 
     print("FOCO PERDIDO")
 
   else
 
   else
     text = "ENFOCADO!"
+
     texto = "ENFOCADO!"
 
     print("FOCO ADQUIRIDO")
 
     print("FOCO ADQUIRIDO")
 
   end
 
   end
Line 36: Line 36:
 
* [[parent::love (Español)|love]]
 
* [[parent::love (Español)|love]]
 
[[Category:Callbacks]]
 
[[Category:Callbacks]]
{{#set:Description=Función ''callback'' ejecutada cuando la ventana obtiene o pierde el foco.}}
+
{{#set:Description=Función callback ejecutada cuando la ventana obtiene o pierde el foco.}}
 
== Otros Idiomas ==
 
== Otros Idiomas ==
 
{{i18n|love.focus}}
 
{{i18n|love.focus}}

Latest revision as of 22:39, 21 January 2012

Available since LÖVE 0.7.0
This callback 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.

Ejemplos

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

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

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

Véase También

Otros Idiomas