移動先: 概要 戻り値 関連項目. フラグ. MEL 例.
geometryConstraint [-name string] [-remove] [-targetList] [-weight float] [-weightAliasList]
[target...] object
geometryConstraint は 「元に戻す」が可能、「照会」が可能、「編集」が可能 です。
ターゲット サーフェスのシェイプに基づき、オブジェクトの位置を、オブジェクトに最も近いポイントにコンストレインします。
geometryConstraint は、入力データとして、1 つまたは複数のサーフェス シェイプ(ターゲット)と DAG トランスフォーム(オブジェクト)を取ります。geometryConstraint で位置をコンストレインされたオブジェクトは、ターゲットのサーフェスに最大ウェイト値で置かれます。ウェイト値の等しいターゲットが 2 つある場合、インデックスが下位にあるターゲットが選択されます。
string[] | 作成されたコンストレイン ノード名 |
戻り値の型は照会モードでは照会フラグが基になります。
aimConstraint, normalConstraint, orientConstraint, parent, pointConstraint, poleVectorConstraint, scaleConstraint, tangentConstraint
name, remove, targetList, weight, weightAliasList
ロング ネーム(ショート ネーム) |
引数型 |
プロパティ |
-name(-n)
|
string
|
|
|
コンストレイン ノードの名前を指定した名前に設定します。デフォルト名は constrainedObjectName_constraintType です。
|
|
-weight(-w)
|
float
|
|
|
指定したターゲットのウェイト値を設定します。
作成時に指定していない場合は、デフォルト値の 1.0 が使用されます。
|
|
-remove(-rm)
|
|
|
|
リストされたターゲットをコンストレインから削除します。
|
|
-targetList(-tl)
|
|
|
|
-weightAliasList(-wal)
|
|
|
|
ターゲット オブジェクトのウェイトをコントロールする、アトリビュートの名前を返します。targetList フラグで返されるターゲットと同じ順序で、エイリアスを返します。
|
|
: コマンドの作成モードで使用可能なフラグ
|
: コマンドの編集モードで使用可能なフラグ
|
: コマンドの照会モードで使用可能なフラグ
|
: 1 つのコマンドで複数回使用可能なフラグ
|
// Constrain cube1 to surf1 at the closest point to cube1.
geometryConstraint surf1 cube1;
// Will prefer surf1 though the weights are equal
geometryConstraint -w .1 surf1 surf2 cube2;
// Now constraints cube2 to lie on surf2 as it's weight is greater
geometryConstraint -e -w 10. surf2 cube2;
// Removes surf2 from cube2's geometryConstraint.
geometryConstraint -e -rm surf2 cube2;
// Adds surf3 to cube2's geometryConstraint with the default weight.
geometryConstraint surf3 cube2;