移動先: 概要 戻り値 関連項目. フラグ. MEL 例.
effector [-hide boolean] [-name string]
[object]
effector は 「元に戻す」が可能、「照会」が可能、「編集」が可能 です。
エフェクタ コマンドは、エフェクタの名前や非表示フラグを設定するために使用します。編集と照会機能には、標準の編集(-e)と照会(-q)フラグが使用されます。
戻り値の型は照会モードでは照会フラグが基になります。
ikHandle, ikSolver, ikSystem
hide, name
ロング ネーム(ショート ネーム) |
引数型 |
プロパティ |
-name(-n)
|
string
|
 
|
|
-hide(-hi)
|
boolean
|
 
|
|
ハンドルにアタッチされた場合に、エフェクタの描画を非表示にするかどうかを指定します。
|
|
: コマンドの作成モードで使用可能なフラグ
|
: コマンドの編集モードで使用可能なフラグ
|
: コマンドの照会モードで使用可能なフラグ
|
: 1 つのコマンドで複数回使用可能なフラグ
|
// Will cause effector1 not to be displayed if attached to a handle.
// This is the default.
//
effector -e -hi true effector1;
// Will cause effector1 to be displayed if attached to a handle.
//
effector -e -hi false effector1;