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"> | ||
− | + | 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.
Contents
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
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