Difference between revisions of "love.event.poll"
m (1 revision: Imported docs from potato.) |
|||
Line 1: | Line 1: | ||
− | + | Gets an iterator for messages in the event queue. | |
== Function == | == Function == | ||
=== Synopsis === | === Synopsis === | ||
Line 22: | Line 22: | ||
* [[parent::love.event]] | * [[parent::love.event]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
− | {{#set:Description=}} | + | {{#set:Description=Gets an iterator for messages in the event queue.}} |
Revision as of 16:17, 14 February 2010
Gets an iterator for messages in the event queue.
Contents
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