love.event.poll (Português)
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