ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
move [-absolute] [-localSpace] [-moveX] [-moveXY] [-moveXYZ] [-moveXZ] [-moveY] [-moveYZ] [-moveZ] [-objectSpace] [-orientJoint] [-parameter] [-preserveUV] [-reflection] [-reflectionAboutBBox] [-reflectionAboutOrigin] [-reflectionAboutX] [-reflectionAboutY] [-reflectionAboutZ] [-reflectionTolerance float] [-relative] [-rotatePivotRelative] [-scalePivotRelative] [-secondaryAxisOrient] [-symNegative] [-worldSpace] [-worldSpaceDistance]
float float float [objects]
move は、取り消し可能、照会不可能、および編集不可能です。
ジオメトリ オブジェクトの位置を変更するために使用します。
オブジェクトとフラグを指定しない既定動作では、現在選択しているオブジェクトがワールド空間で絶対的に移動します。単位を明示的に指定しない場合、座標の値は、現在の直線単位で定義されたものとして解釈されます。
-objectSpace を使用する場合は、2 つの方法で使用できます。単位を付けずに数値を入力すると、オブジェクトの内部値はこの値に設定されます。単位を指定すると、内部値は、そのワールド座標空間距離を表す同等の内部値に設定されます。
-localSpace フラグでは、親空間内でオブジェクトが移動します。この空間では、X、Y、Z の値が、オブジェクトの tx チャネル、ty チャネル、tz チャネルに直接対応します。
-rotatePivotRelative/-scalePivotRelative フラグは -absolute フラグと一緒に使用し、ピボット ポイントが特定絶対位置に配置されるようにオブジェクトを平行移動できます。コンポーネントを指定すると、このフラグは無視されます。
-worldSpaceDistance フラグは、-objectSpace/-localSpace フラグと一緒に使用できるモディファイア フラグです。このフラグを指定すると、X 値、Y 値、Z 値がワールド空間の単位で扱われるので、指定したワールド空間距離でオブジェクトは移動しますが、-objectSpace/-localSpace フラグで指定した軸とともに移動します。このフラグを指定しない既定動作では、X 値、Y 値、Z 値が、オブジェクト座標空間かローカル座標空間の単位で扱われます。つまりこのフラグを指定していない場合、ワールド空間での移動距離は、オブジェクトに適用される変換によって決まります。
なし
rotate, scale, xform
absolute, localSpace, moveX, moveXY, moveXYZ, moveXZ, moveY, moveYZ, moveZ, objectSpace, orientJoint, parameter, preserveUV, reflection, reflectionAboutBBox, reflectionAboutOrigin, reflectionAboutX, reflectionAboutY, reflectionAboutZ, reflectionTolerance, relative, rotatePivotRelative, scalePivotRelative, secondaryAxisOrient, symNegative, worldSpace, worldSpaceDistance
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
コマンド内でフラグを複数回使用できます。
|
polySphere;
move 1 1 1;
move -y 5;
move -relative -objectSpace -worldSpaceDistance 1in 1in 1in;
move -absolute 0 0 0 pSphere1;
// To specify one or more object(s), all three lengths must be specified,
// although not all values may actually be used. For example, with the -y flag,
// all three values are required, but only the first is applied for the y
// operation; in the following example, only the value 5 is used, and the other
// two values could be anything:
//
move -y 5 3.14159 2.71828 "pSphere1";