移動先: 概要 戻り値 フラグ. MEL 例.

概要

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

listAnimatable は 「元に戻す」が可能、「照会」が不可能「編集」が不可能 です。

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

戻り値

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

フラグ

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

: コマンドの作成モードで使用可能なフラグ : コマンドの編集モードで使用可能なフラグ
: コマンドの照会モードで使用可能なフラグ : 1 つのコマンドで複数回使用可能なフラグ

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;