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

概要

pointConstraint [-layer string] [-maintainOffset] [-name string] [-offset float float float] [-remove] [-skip string] [-targetList] [-weight float] [-weightAliasList] [target...] [object]

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

ターゲット オブジェクトの位置、または多くのターゲットの平均位置に、オブジェクトの位置を制限します。pointConstraint は、1 つの「コンストレイント オブジェクト」DAG トランスフォーム ノードを配置する、1 つ以上の「ターゲット」DAG トランスフォーム ノードを入力として取ります。pointConstraint は、ターゲット オブジェクトのワールド空間位置の加重平均にコンストレイント オブジェクトを配置します。

戻り値

string[]作成されたコンストレイント ノード名。

照会モードでは、戻り値のタイプは照会されたフラグに基づきます。

関連

aimConstraint, geometryConstraint, normalConstraint, orientConstraint, parentConstraint, poleVectorConstraint, scaleConstraint, tangentConstraint

フラグ

layer, maintainOffset, name, offset, remove, skip, targetList, weight, weightAliasList
ロング ネーム(ショート ネーム) 引数タイプ プロパティ
-name(-n) string createqueryedit
コンストレイント ノードの名前を指定した名前に設定します。既定名は constrainedObjectName_constraintType です。
-weight(-w) float createqueryedit
指定したターゲットのウェイト値を設定します。作成時に指定していない場合は、既定値の 1.0 が使用されます。
-remove(-rm) edit
リストされたターゲットをコンストレイントから除去します。
-targetList(-tl) query
ターゲット オブジェクトのリストを返します。
-weightAliasList(-wal) query
ターゲット オブジェクトのウェイトをコントロールする、アトリビュートの名前を返します。targetList フラグで返されるターゲットと同じ順序で、エイリアスを返します。
-layer(-l) string createedit
コンストレイントを追加するアニメーション レイヤの名前を指定します。
-offset(-o) float float float createqueryedit
オフセットの値を設定または照会します。既定は 0,0,0 です。
-maintainOffset(-mo) create
コンストレイントされたオブジェクトの初期位置を保持するために必要なオフセットが計算され、オフセットとして使用されます。
-skip(-sk) string createeditmultiuse
省略する軸を指定します。有効な値は、「x」、「y」、「z」、「none」です。作成時の既定は「none」です。このフラグは多目的に使用できます。

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

MEL 例

// Position cube1 at the location of cone1.
pointConstraint cone1 cube1;
// Uses the average of the position of cone1 and surf2.
pointConstraint -w .1 cone1 surf2 cube2;
// Sets the weight for cone1's effect on cube2 to 10.
pointConstraint -e -w 10. cone1 cube2;
// Removes surf2 from cube2's pointConstraint
pointConstraint -e -rm surf2 cube2;
// Adds surf3 to cube2's pointConstraint with the default weight
pointConstraint surf3 cube2;
// Constrain the y & z translation of sph2 to sph1
pointConstraint -skip x sph1 sph2;