usd_transformsuffix
Since | 18.0 |
---|
string usd_transformsuffix(string name)
This function returns the suffix contained in the full name of a transform operation.
name
The full name of the transform operation, which includes the standard namespace, encodes transformation type, and optionally contains the suffix.
Returns
The suffix contained in the transform operation name.
Examples
examples
// Get the suffix of the first transform operation on the cubestring cube_xform_ops[] = usd_transformorder(0, "/geo/cube");string suffix = usd_transformsuffix(cube_xform_ops[0]);