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