delete [-all] [-attribute string] [-channels] [-constraints] [-constructionHistory] [-controlPoints boolean] [-expressions] [-hierarchy string] [-inputConnectionsAndNodes] [-shape boolean] [-staticChannels] [-timeAnimationCurves boolean] [-unitlessAnimationCurves boolean]
objects
delete は、取り消し可能、照会不可能、および編集不可能です。
選択したオブジェクト、すべてのオブジェクト、コマンドで指定したオブジェクトの削除に使用します。フラグを使用し、このコマンドが動作するオブジェクトのタイプをフィルタ処理してください。 指定した項目以外が削除されることもあります。たとえば、NURBS サーフェス上で同じ「行」 の 2 つの CV を削除すると、行全体が削除されます。なし
ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||
---|---|---|---|---|
-attribute(-at)
|
string
|
|||
|
||||
-hierarchy(-hi)
|
string
|
|||
|
||||
-shape(-s)
|
boolean
|
|||
|
||||
-controlPoints(-cp)
|
boolean
|
|||
|
||||
-all(-all)
|
|
|||
|
||||
-inputConnectionsAndNodes(-icn)
|
|
|||
|
||||
-constructionHistory(-ch)
|
|
|||
|
||||
-staticChannels(-sc)
|
|
|||
|
||||
-channels(-c)
|
|
|||
|
||||
-unitlessAnimationCurves(-uac)
|
boolean
|
|||
|
||||
-timeAnimationCurves(-tac)
|
boolean
|
|||
|
||||
-expressions(-e)
|
|
|||
|
||||
-constraints(-cn)
|
|
|||
|
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | コマンド内でフラグを複数回使用できます。 |
// To delete selected objects use: delete; // To delete a few specific objects like surfaceShape1, surface1 and // paramCurve1 use: delete surfaceShape1 surface1 paramCurve1; // To delete all channels in the scene: delete -all -c; // To delete static channels connected to selected nodes: delete -sc; // To delete motion path nodes connected to selected nodes: delete -mp; // To delete all expressions in the scene: delete -all -e; // To delete selected constraints and constraints attached to selected nodes: delete -cn; // Notes: // The -at, -h, -s and -cp flags only apply when either -c/channels // or -sc/-staticChannels or -e/-expressions options are specified.