Difference between revisions of "love.event.pump"

(Update love.event.pump to fit current definition)
m (Fixed typo)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{newin|[[0.6.0]]|060|type=function}}
 
Pump events into the event queue.
 
Pump events into the event queue.
 +
 
This is a low-level function, and is usually not called by the user, but by <code>[[love.run]]</code>.
 
This is a low-level function, and is usually not called by the user, but by <code>[[love.run]]</code>.
 +
 
Note that this does need to be called for any OS to think you're still running,
 
Note that this does need to be called for any OS to think you're still running,
 
and if you want to handle OS-generated events at all (think callbacks).
 
and if you want to handle OS-generated events at all (think callbacks).

Latest revision as of 18:09, 14 June 2021

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

Pump events into the event queue.

This is a low-level function, and is usually not called by the user, but by love.run.

Note that this does need to be called for any OS to think you're still running, and if you want to handle OS-generated events at all (think callbacks).

O.png love.event.pump can only be called from the main thread, but afterwards, the rest of love.event can be used from any other thread.  


Function

Synopsis

love.event.pump( )

Arguments

None.

Returns

Nothing.

See Also


Other Languages