![]() |
|
The Usd API provides a number of methods for fast, configurable traversal of a stage or sub-trees of prims on a stage. The two categories of traversal are recursion and iteration. Common to both is the ability to specify a "predicate" that governs which prims will actually be yielded by the API during a traversal, and which will be skipped. Predicates are conjunctions, disjunctions, and negations of a set of tests of core properties of UsdPrim that are cached for speedy access during stage population. See Prim Flags for more detail and examples.
UsdPrim provides a number of methods for accessing its direct children via a "range", with which one can construct very efficient recursive functions. The standard UsdPrim::GetChildren() uses the "canonical traversal predicate," which implies all active, loaded, defined, non-abstract children. UsdPrim::GetFilteredChildren() allows specification of a custom predicate.
UsdPrim::GetDescendants() returns a range for all of a prim's "canonical" decendants, and UsdPrim::GetFilteredDescendants() allows the range's predicate to be specified.
UsdPrimRange enables highly customized iterations, adding the ability to perform pre-and-post-order traversals, and to prune subtrees.
The convenience method UsdStage::Traverse() returns a UsdPrimRange that visits all descendants of the pseudo-root, but not the pseudo-root itself.
Later we'll talk about how to create new schema classes...
For a UsdAttribute named "points" defined in a schema class, you will find two access methods in the schema class in C++ and python:
What is the difference between these two methods, and when should you use each? GetPointsAttr() simply returns a UsdAttribute object, without authoring any scene description. It is therefore threadsafe, and it should be your choice in any code that may be executed in a multithreaded, "multiple readers" section. Of course, the UsdAttribute it returns has an API that includes mutating methods that will author scene description, and those methods should be avoided in multi-threaded sections. However, there is no guarantee that the UsdAttribute returned by GetPointsAttr() will be valid for use in authoring scene description, because there may not be any definition available for the attribute in the Stage's scene description, which means (for example) the Set() method might not know what the attribute's datatype is. CreatePointsAttr(), by contrast, will actually create a typed definition for the attribute in the current UsdEditTarget if no definition for the attribute yet exists - it follows that it is legal and safe to call CreatePointsAttr() even if the attribute is already defined in the current UsdEditTarget().
In general, you should use CreateXXXAttr() when authoring scene description, and GetXXXAttr() when reading/importing scene description. CreateXXXAttr() also allows you to specify a default value to assign to the attribute, which you can specify to author sparsely, which means that we will refrain from authoring the provided value iff:
The same pattern holds for relationships, except that CreateXXXRel() does not allow specification of a default target, because relationships are list-edited, and it would be unclear whether to add or set the target when there are already authored target opinions.