Difference between revisions of "love.event.poll (Português)"

m (translation update)
m (minor fix)
 
Line 23: Line 23:
 
=== Procurando eventos no 0.7.2 ===
 
=== Procurando eventos no 0.7.2 ===
 
<source lang="lua">
 
<source lang="lua">
[fuzzy]for e, a, b, c, d in love.event.poll() do
+
for e, a, b, c, d in love.event.poll() do
 
if e == "q" then
 
if e == "q" then
 
-- Sair!
 
-- Sair!

Latest revision as of 17:27, 2 September 2014

love.event.poll


Retorna um iterador para mensagens na fila de eventos.

Função

Sinopse

i = love.event.poll( )

Argumentos

Nenhum.

Retorna

função i
Função iteradora que pode ser usada num laço for.

Exemplos

Procurando eventos no 0.8.0

for e, a, b, c, d in love.event.poll() do
	if e == "quit" then
		-- Sair!
	end	
end

Procurando eventos no 0.7.2

for e, a, b, c, d in love.event.poll() do
	if e == "q" then
		-- Sair!
	end	
end

Veja Também


Outras Línguas