Difference between revisions of "love.event.poll"

m (Forgot a closing tag...)
m (Added newin template)
Line 1: Line 1:
 +
{{newin|[[0.6.0]]|060|type=function}}
 
Returns an iterator for messages in the event queue.
 
Returns an iterator for messages in the event queue.
 
== Function ==
 
== Function ==

Revision as of 14:13, 29 December 2018

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

Returns an iterator for messages in the event queue.

Function

Synopsis

i = love.event.poll( )

Arguments

None.

Returns

function i
Iterator function usable in a for loop.

Examples

Checking for events in 0.10.0

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

Checking for events in 0.8.0

for e, a, b, c, d in love.event.poll() do
	if e == "quit" then
		-- Quit!
	end	
end

Checking for events in 0.7.2

for e, a, b, c in love.event.poll() do
	if e == "q" then
		-- Quit!
	end	
end

See Also


Other Languages