ジャンプ先: 概要. 戻り値. 関連. フラグ. 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
ロング ネーム(ショート ネーム) 引数タイプ プロパティ
-value(-v) float createquery
パーセント値が適用されます。既定は 1 です。照会モードの場合、選択したオブジェクト コンポーネントのウェイトに対応する double の配列が返されます。
-dropoffPosition(-dp) linear linear linear create
パーセント値をドロップオフさせるポイントを指定します。
-dropoffAxis(-dax) linear linear linear create
dropoffPosition から始めて、パーセント値をドロップオフさせる軸を指定します。
-dropoffCurve(-dc) string create
パーセント値をドロップオフさせるカーブを指定します。
-dropoffDistance(-dds) linear create
-dp フラグ、-dax フラグ、-dc フラグで指定した、ポイント、プレーン、カーブからのドロップオフ距離を指定します。
-dropoffType(-dt) string create
ドロップオフの種類を指定します。-dp、-dax または -dc フラグと連動して使用されます。既定は linear です。有効な値は、linear、sine、exponential、linearSquared、none です。
-addPercent(-ap) create
-v フラグで指定したパーセント値を既存パーセント値に加算します。
-multiplyPercent(-mp) create
-v フラグで指定したパーセント値を既存パーセント値に乗算します。

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

MEL 例

// 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;