usd_removerelationshiptarget
Since | 18.0 |
---|
int usd_removerelationshiptarget(int stagehandle, string primpath, string name, string target)
This function removes a target from the primitive’s relationship.
stagehandle
A handle to the stage to write to. Currently the only valid value is 0
, which means the current stage in a node. (This argument may be used in the future to allow writing to other stages.)
primpath
The path to the primitive.
name
The relationship name.
target
The the target path to remove.
Returns
The value of stagehandle
on success or -1
on failure.
Examples
examples
// Remove the sphere from cube's relationship.usd_removerelationshiptarget(0, "/geo/cube", "relationship_name", "/geo/sphere");