Event

from panda3d.core import Event
class Event

Bases:

Bases: TypedReferenceCount

A named event, possibly with parameters. Anyone in any thread may throw an event at any time; there will be one process responsible for reading and dispacting on the events (but not necessarily immediately).

This function use to inherit from Namable, but that makes it too expensive to get its name the Python code. Now it just copies the Namable interface in.

Inheritance diagram

Inheritance diagram of Event

__init__(copy: Event)
__init__(event_name: str, receiver: EventReceiver)
addParameter(obj: EventParameter)
assign(copy: Event) Event
clearName()

Resets the Event’s name to empty.

clearReceiver()
static getClassType() TypeHandle
getName() str
getNumParameters() int
getParameter(n: int) EventParameter
getParameters() list
getReceiver() EventReceiver
hasName() bool

Returns true if the Event has a nonempty name set, false if the name is empty.

hasReceiver() bool
property name string
output(out: ostream)
property parameters Sequence[EventParameter]
property receiver EventReceiver
setName(name: str)
setReceiver(receiver: EventReceiver)