WorkingNodePath
from panda3d.core import WorkingNodePath
- class WorkingNodePath
Bases:
This is a class designed to support low-overhead traversals of the complete scene graph, with a memory of the complete path through the graph at any given point.
You could just use a regular
NodePath
to do this, but since theNodePath
requires storing NodePathComponents on each node as it is constructed, and then removing them when it destructs, there is considerable overhead in that approach.The WorkingNodePath eliminates this overhead (but does not guarantee consistency if the scene graph changes while the path is held).
At any given point, you may ask the WorkingNodePath for its actual
NodePath
, and it will construct and return a newNodePath
representing the complete generated chain.Inheritance diagram
- property node_path NodePath
Constructs and returns an actual
NodePath
that represents the same path we have just traversed.
- property valid bool
Returns true if the
WorkingNodePath
object appears to be a validNodePath
reference, false otherwise.