EventQueue¶
from panda3d.core import EventQueue
-
class
EventQueue
¶ A queue of pending events. As events are thrown, they are added to this queue; eventually, they will be extracted out again by an
EventHandler
and processed.Inheritance diagram
-
__init__
()¶
-
clear
()¶ Empties all events on the queue, throwing them on the floor.
-
static
getGlobalEventQueue
() → EventQueue¶ Returns a pointer to the one global
EventQueue
object. If the global object has not yet been created, this will create it.
-