Difference between revisions of "love.event.poll"

m (acerto de links)
(Undo revision 4177 by Minicz (Talk))
Line 8: Line 8:
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
{{param|function (Português)|i|Iterator function usable in for loop.}}
+
{{param|function|i|Iterator function usable in for loop.}}
 
== Examples ==
 
== Examples ==
 
=== Checking for events ===
 
=== Checking for events ===

Revision as of 08:05, 4 January 2011

Gets an iterator for messages in the event queue.

Function

Synopsis

i = love.event.poll( )

Arguments

None.

Returns

function i
Iterator function usable in for loop.

Examples

Checking for events

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

See Also

Other Languages