GeomDrawCallbackData

class GeomDrawCallbackData

Bases: CallbackData

This specialization on CallbackData is passed when the callback is initiated from deep within the draw traversal, for a particular Geom.

Inheritance diagram

Inheritance diagram of GeomDrawCallbackData

static TypeHandle get_class_type(void)
bool get_force(void) const

Returns true if any required data should be forced into memory if necessary to render the object, or false if the object should be omitted if some of the data is not available (at least until the data becomes available later).

GraphicsStateGuardianBase *get_gsg(void) const

Returns a pointer to the current GSG.

bool get_lost_state(void) const

Returns the lost_state flag. See set_lost_state().

CullableObject *get_object(void) const

Returns a pointer to the particular object that is being drawn.

void set_lost_state(bool lost_state)

Sets the lost_state flag. If this is true, the callback does not have to be quite so careful to clean up after itself; Panda will assume that the graphics state is in an unknown state after the callback has finished, and will issue all the necessary calls to restore it. If this is false, Panda will assume the callback will leave the graphics state exactly as it came in, and won’t bother to try to restore it. The default is true.