Difference between revisions of "love.event.poll (Português)"
(Created page with 'Obtém um iterador para as mensagens na fila de eventos. == Função == === Sinopse === <source lang="lua"> i = love.event.poll( ) </source> === Argumentos === Nenhum. === Retorn…') |
m (minor fix) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | + | <span style="color: #597E9A; font-size: 18pt">love.event.poll</span> | |
+ | {{#set:RealLink=love.event.poll (Português)}} | ||
+ | {{#set:DisplayName=love.event.poll}} | ||
+ | Retorna um iterador para mensagens na fila de eventos. | ||
== Função == | == Função == | ||
=== Sinopse === | === Sinopse === | ||
Line 7: | Line 10: | ||
=== Argumentos === | === Argumentos === | ||
Nenhum. | Nenhum. | ||
− | === | + | === Retorna === |
− | {{param|function|i|Função iteradora que | + | {{param|function (Português)|i|Função iteradora que pode ser usada num laço for.|função}} |
== Exemplos == | == Exemplos == | ||
− | === | + | === Procurando eventos no 0.8.0 === |
<source lang="lua"> | <source lang="lua"> | ||
− | for e,a,b,c in love. | + | for e, a, b, c, d in love.event.poll() do |
+ | if e == "quit" then | ||
+ | -- Sair! | ||
+ | end | ||
+ | end | ||
+ | </source> | ||
+ | === Procurando eventos no 0.7.2 === | ||
+ | <source lang="lua"> | ||
+ | for e, a, b, c, d in love.event.poll() do | ||
if e == "q" then | if e == "q" then | ||
-- Sair! | -- Sair! | ||
Line 19: | Line 30: | ||
</source> | </source> | ||
== Veja Também == | == Veja Também == | ||
− | * [[parent::love.event (Português)]] | + | * [[parent::love.event (Português)|love.event]] |
− | * [[love.event.wait (Português)]] | + | * [[love.event.wait (Português)|love.event.wait]] |
[[Category:Functions]] | [[Category:Functions]] | ||
− | {{#set:Description= | + | {{#set:Description=Retorna um iterador para mensagens na fila de eventos.}} |
− | == | + | {{#set:Since=000}} |
+ | == Outras Línguas == | ||
{{i18n|love.event.poll}} | {{i18n|love.event.poll}} |
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