ジャンプ先: 概要. 戻り値. キーワード. 関連. フラグ. MEL 例.
editMetadata [-channelName string] [-channelType string] [-endIndex string] [-index string] [-indexType string] [-memberName string] [-remove] [-scene] [-startIndex string] [-streamName string] [-stringValue string] [-value float]
editMetadata は、取り消し可能、照会不可能、および編集不可能です。
このコマンドは、オブジェクトにメタデータ要素を設定するために、またはオブジェクトからメタデータ要素を除去するために使用します。このコマンドを使用する前に、addMetadata コマンド、または API でこのコマンドに相当するものを使用して、最初にメタデータ ストリーム タイプをオブジェクトにアタッチする必要があります。コマンドには次の 4 つの基本的なバリエーションがあります。string | 新しく編集されたノードがある場所にはノードの名前、編集できなかった場合は空の文字列です。コンストラクション ヒストリが存在する場合は、editMetadata ノードになります。 |
ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
---|---|---|---|---|
-remove(-rem)
|
|
|||
|
||||
-memberName(-mn)
|
string
|
|||
|
||||
-value(-v)
|
float
|
|||
|
||||
-stringValue(-sv)
|
string
|
|||
|
||||
-channelName(-cn)
|
string
|
|||
|
||||
-channelType(-cht)
|
string
|
|||
|
||||
-endIndex(-eix)
|
string
|
|||
|
||||
-index(-idx)
|
string
|
|||
|
||||
-indexType(-idt)
|
string
|
|||
|
||||
-scene(-scn)
|
|
|||
|
||||
-startIndex(-six)
|
string
|
|||
|
||||
-streamName(-stn)
|
string
|
|||
|
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | コマンド内でフラグを複数回使用できます。 |
polyPlane -n smcPlane -ch off; // Result: smcPlane // pickWalk -d down; // Result: smcPlaneShape // // Create structure dataStructure -format "raw" -asString "name=idStructure:int32=ID"; // Result: idStructure // // Apply structure to plane addMetadata -structure "idStructure" -streamName "idStream" -channelName "vertex"; // Attach a metadata value to three of the components by selection select -r smcPlaneShape.vtx[8:10]; editMetadata -streamName "idStream" -memberName "ID" -value 7; // Result: 1 // // Attach a metadata value to another component by manual indexing select -r smcPlaneShape; editMetadata -streamName "idStream" -memberName "ID" -channelName "vertex" -value 8 -index 14; // Result: 1 // // Remove metadata from the middle of the three vertexes set earlier select -r smcPlaneShape.vtx[9]; editMetadata -streamName "idStream" -remove; // Result: 1 //