Difference between revisions of "love.event.poll"

m (Added newin template)
Line 1: Line 1:
 
{{newin|[[0.6.0]]|060|type=function}}
 
{{newin|[[0.6.0]]|060|type=function}}
Returns an iterator for messages in the event queue.
+
Возвращает итератор для сообщений в очереди событий.
== Function ==
+
== Функция ==
=== Synopsis ===
+
=== Синопсис ===
 
<source lang="lua">
 
<source lang="lua">
 
i = love.event.poll( )
 
i = love.event.poll( )
 
</source>
 
</source>
=== Arguments ===
+
=== Аргументы ===
None.
+
Нет.
=== Returns ===
+
=== Возвращает ===
{{param|function|i|Iterator function usable in a for loop.}}
+
{{param|function|i|Функция для использования в качестве итератора в цикле for.}}
== Examples ==
+
== Пример ==
=== Checking for events in 0.10.0 ===
+
=== Проверка на наличие событий в 0.10.0 ===
 
<source lang="lua">
 
<source lang="lua">
 
for n, a, b, c, d, e, f in love.event.poll() do
 
for n, a, b, c, d, e, f in love.event.poll() do
 
if n == "quit" then
 
if n == "quit" then
-- Quit!
+
-- Выйти!
 
end
 
end
 
end
 
end
 
</source>
 
</source>
=== Checking for events in 0.8.0 ===
+
=== Проверка на наличие событий в 0.8.0 ===
 
<source lang="lua">
 
<source lang="lua">
 
for e, a, b, c, d in love.event.poll() do
 
for e, a, b, c, d in love.event.poll() do
 
if e == "quit" then
 
if e == "quit" then
-- Quit!
+
-- Выйти!
 
end
 
end
 
end
 
end
 
</source>
 
</source>
=== Checking for events in 0.7.2 ===
+
=== Проверка на наличие событий в 0.7.2 ===
 
<source lang="lua">
 
<source lang="lua">
 
for e, a, b, c in love.event.poll() do
 
for e, a, b, c in love.event.poll() do
 
if e == "q" then
 
if e == "q" then
-- Quit!
+
-- Выйти!
 
end
 
end
 
end
 
end
 
</source>
 
</source>
== See Also ==
+
== Смотри также ==
* [[parent::love.event]]
+
* [[parent::love.event (Русский)]]
* [[love.event.wait]]
+
* [[love.event.wait (Русский)]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Returns an iterator for messages in the event queue.}}
+
{{#set:Description=Возвращает итератор для сообщений в очереди событий.}}
 
{{#set:Since=000}}
 
{{#set:Since=000}}
== Other Languages ==
+
== Другие языки ==
 
{{i18n|love.event.poll}}
 
{{i18n|love.event.poll}}

Revision as of 22:32, 17 November 2019

Available since LÖVE 0.6.0
This function is not supported in earlier versions.

Возвращает итератор для сообщений в очереди событий.

Функция

Синопсис

i = love.event.poll( )

Аргументы

Нет.

Возвращает

function i
Функция для использования в качестве итератора в цикле for.

Пример

Проверка на наличие событий в 0.10.0

for n, a, b, c, d, e, f in love.event.poll() do
	if n == "quit" then
		-- Выйти!
	end	
end

Проверка на наличие событий в 0.8.0

for e, a, b, c, d in love.event.poll() do
	if e == "quit" then
		-- Выйти!
	end	
end

Проверка на наличие событий в 0.7.2

for e, a, b, c in love.event.poll() do
	if e == "q" then
		-- Выйти!
	end	
end

Смотри также


Другие языки