ジャンプ先: 概要. 戻り値. フラグ. MEL 例.

概要

listAnimatable [-active] [-manip] [-manipHandle] [-shape] [-type]

listAnimatable は、取り消し可能、照会不可能、および編集不可能です。

ノードのアニメート可能アトリビュートがリストされます。フラグを指定すると、現在のマニピュレータまたはノード タイプでフィルタリングできます。

戻り値

string[]検索されたすべてのアニメート可能アトリビュート

フラグ

active, manip, manipHandle, shape, type
ロング ネーム(ショート ネーム) 引数タイプ プロパティ
-active(-act) create
このフラグはサポートしていません。
-manip(-m) create
現在のマニピュレータから影響されるアトリビュートのみが返されます。アクティブなマニピュレータが存在せず、別のフラグを指定した場合、出力は、「-manip」フラグを指定しない場合と同じです。
-manipHandle(-mh) create
現在のマニピュレータ ハンドルに影響されるアトリビュートのみが返されます。アクティブなマニピュレータ ハンドルが存在せず、別のフラグを指定した場合、出力は、「-manipHandle」フラグを指定しない場合と同じです。
-shape(-s) create
このフラグはサポートしていません。
-type(-typ) create
アトリビュートは返されず、現在アニメート可能なノードのタイプが返されます。

フラグはコマンドの作成モードで表示できます フラグはコマンドの編集モードで表示できます
フラグはコマンドの照会モードで表示できます コマンド内でフラグを複数回使用できます。

MEL 例

// List only the attrs driven by the current manip.
//
listAnimatable -manip;

// List only the attrs driven by the current manipulator handle.
//
listAnimatable -manipHandle;

// List only the types of nodes driven by the current manip.
//
listAnimatable -manip -type;

// List only the types of the active nodes.
//
listAnimatable -type;

// List attributes on active objects (and shapes below them),
// or active attrs.
//
listAnimatable;

// List types of active objects and types of any shapes below active
// objects.
//
listAnimatable -type;