Difference between revisions of "love.event.poll (Português)"
(tr) |
m (translation update) |
||
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 8: | Line 10: | ||
=== Argumentos === | === Argumentos === | ||
Nenhum. | Nenhum. | ||
− | === | + | === Retorna === |
− | {{param|function (Português)|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"> | ||
+ | [fuzzy]for e, a, b, c, d in love.event.poll() do | ||
if e == "q" then | if e == "q" then | ||
-- Sair! | -- Sair! | ||
Line 20: | Line 29: | ||
end | end | ||
</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}} | {{#set:Since=000}} | ||
− | + | == Outras Línguas == | |
− | == | ||
{{i18n|love.event.poll}} | {{i18n|love.event.poll}} |
Revision as of 17:24, 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
[fuzzy]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