Panda3D
|
This is a generic data block that is passed along to a CallbackObject when a callback is made. More...
Public Member Functions | |
TypeHandle | getType () |
int | getTypeIndex () |
Returns the internal index number associated with this object's TypeHandle, a unique number for each different type. | |
bool | isExactType (TypeHandle handle) |
Returns true if the current object is the indicated type exactly. | |
bool | isOfType (TypeHandle handle) |
Returns true if the current object is or derives from the indicated type. | |
output (ostream out) | |
upcall () | |
You should make this call during the callback if you want to continue the normal function that would have been done in the absence of a callback. | |
Static Public Member Functions | |
static TypeHandle | getClassType () |
This is a generic data block that is passed along to a CallbackObject when a callback is made.
It contains data specific to the particular callback type in question.
This is actually an abstract base class and contains no data. Specializations of this class will contain the actual data relevant to each callback type.
static TypeHandle getClassType | ( | ) | [static] |
Reimplemented from TypedObject.
Reimplemented in DisplayRegionCullCallbackData, DisplayRegionDrawCallbackData, GeomDrawCallbackData, and NodeCullCallbackData.
TypeHandle getType | ( | ) | [inherited] |
Reimplemented in AnimChannelBase.
int getTypeIndex | ( | ) | [inherited] |
Returns the internal index number associated with this object's TypeHandle, a unique number for each different type.
This is equivalent to get_type().get_index().
bool isExactType | ( | TypeHandle | handle | ) | [inherited] |
Returns true if the current object is the indicated type exactly.
bool isOfType | ( | TypeHandle | handle | ) | [inherited] |
Returns true if the current object is or derives from the indicated type.
output | ( | ostream | out | ) |
upcall | ( | ) |
You should make this call during the callback if you want to continue the normal function that would have been done in the absence of a callback.