DataGraphTraverser

from panda3d.core import DataGraphTraverser
class DataGraphTraverser

Bases:

This object supervises the traversal of the data graph and the moving of data from one DataNode to its children. The data graph is used to manage data from input devices, etc. See the overview of the data graph in dataNode.h.

Inheritance diagram

Inheritance diagram of DataGraphTraverser

__init__(param0: DataGraphTraverser)
__init__(current_thread: Thread)
collectLeftovers()

Pick up any nodes that didn’t get completely traversed. These must be nodes that have multiple parents, with at least one parent completely outside of the data graph.

getCurrentThread() Thread

Returns the currently-executing thread object, as passed to the DataGraphTraverser constructor.

traverse(node: PandaNode)

Starts the traversal of the data graph at the indicated root node.

traverseBelow(node: PandaNode, output: DataNodeTransmit)

Continues the traversal to all the children of the indicated node, passing in the given data, without actually calling transmit_data() on the given node.