int usd_isindexedprimvar(<stage>stage, string primpath, string name)
This function checks whether the given primvar is indexed.
Some primvars may contain a compacted array of unique values, and an additional array of indices into the value array. They are called indexed primvars. The length of the value array depends on the number of unique elements, but the length of the index array corresponds to the number of entities the primvar applies to.
<stage>
When running in the context of a node (such as a wrangle LOP), this argument can be an integer representing the input number (starting at 0) to read the stage from. The integer is equivalent to the string form referencing a particular input, e.g., "opinput:0".
primpath
The path to the primitive.
name
Primvar name (without namespace).
Returns
1
if the primvar exists and is indexed, or 0
otherwise.
Examples
// Check if primvar "some_primvar" is indexed. int is_indexed = usd_isindexedprimvar(0, "/geometry/sphere", "some_primvar");
See also | |
usd | |
usd_primvar |
|