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

(Created page with "{{newin|0.7.0}} Función callback ejecutada cuando la ventana obtiene o pierde el foco. == Función == === Sinopsis === <source lang="lua"> love.focus(f) </source> === Argum...")
 
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{newin|[[0.7.0]]}}
+
{{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.
Line 11: Line 11:
 
=== Retornos  ===
 
=== Retornos  ===
 
Nada.  
 
Nada.  
== Ejemplo ==
+
== Ejemplos ==
 
<source lang="lua">
 
<source lang="lua">
  
 
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 33: Line 33:
  
 
</source>
 
</source>
== Ve También ==
+
== Véase También ==
* [[parent::love (Español)]]
+
* [[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