Since | 18.0 |
int usd_setcollectionexcludes(int stagehandle, string collectionpath, string excludes[])
この関数は、コレクションに除外リストを設定します。
stagehandle
書き出し先のステージのハンドル。
現在のところ、唯一有効な値は0
のみです。
この値は、ノード内の現在のステージを意味します(今後は、この引数を使用することで他のステージへの書き出しが可能になります)。
collectionpath
コレクションのパス。
excludes
コレクションに除外リストとして設定するオブジェクトパスのリスト。
Returns
成功するとstagehandle
の値、失敗すると-1
。
Examples ¶
// cubeのコレクションに除外リストを設定します。 string collection_path = usd_makecollectionpath(0, "/geo/cube", "some_collection"); usd_setcollectionexcludes(0, collection_path, array("/geo/sphere4", "/geo/sphere5"));
See also | |
usd | |
usd_collection |