ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
percent [-addPercent] [-dropoffAxis linear linear linear] [-dropoffCurve string] [-dropoffDistance linear] [-dropoffPosition linear linear linear] [-dropoffType string] [-multiplyPercent] [-value float]
node [objects]
percent は、取り消し可能、照会可能、および編集不可能です。
クラスタや jointCluster など、ウェイトをかけたノードのメンバーでパーセント値を設定します。フラグを指定しないと、指定したノードで選択したコンポーネントのパーセント値が、指定したパーセント値に設定されます。指定されたパーセント値から 0 へのドロップオフは、シェイプの周りのドロップオフ距離を使用して、ポイント、プレーン、またはカーブから指定できます。パーセント値は、ノード コンポーネントの既存パーセント値と加算したり乗算したりすることもできます。
なし
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
cluster, deformer, flexor, lattice, sculpt, wire, wrinkle
addPercent, dropoffAxis, dropoffCurve, dropoffDistance, dropoffPosition, dropoffType, multiplyPercent, value
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
コマンド内でフラグを複数回使用できます。
|
// set percents on the selected items to 0.6
//
percent -v 0.6 cluster1;
// set percents on the selected items dropping off along the
// z-axis starting at the origin. Dropoff distance is 5, and
// the initial value is 1. Dropoff type is linear.
//
percent -dp 0 0 0 -dax 0 0 1 -dt linear -dds 5 -v 1 cluster1;
// set percents on the selected items dropping off along
// curve1. Dropoff distance is 5, and
// the initial value is 0.3.
//
percent -dc curve2 -dds 3 -v 0.3 cluster2;
// add 0.1 to the percents of the selected items
//
percent -v 0.1 -ap cluster1;