ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
polyMoveFacetUV [-axisLen float float] [-axisLenX float] [-axisLenY float] [-caching boolean] [-constructionHistory boolean] [-name string] [-nodeState int] [-pivot float float] [-pivotU float] [-pivotV float] [-random float] [-rotationAngle angle] [-scale float float] [-scaleU float] [-scaleV float] [-translate float float] [-translateU float] [-translateV float]
polyMoveFacetUV は、取り消し可能、照会可能、および編集可能です。
選択したフェースに関連する、すべての UV 値を移動してマップを修正します。 モデルの UV 座標は、3D オブジェクトの頂点を変更せずに操作されます。| string | ノード名 |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
| ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Common poly modifier operation flags | ||||||||||||
-axisLen(-l)
|
float float
|
|
||||||||||
|
||||||||||||
-axisLenX(-lx)
|
float
|
|
||||||||||
|
||||||||||||
-axisLenY(-ly)
|
float
|
|
||||||||||
|
||||||||||||
-caching(-cch)
|
boolean
|
|
||||||||||
|
||||||||||||
-constructionHistory(-ch)
|
boolean
|
|
||||||||||
|
||||||||||||
-name(-n)
|
string
|
|
||||||||||
|
||||||||||||
-nodeState(-nds)
|
int
|
|
||||||||||
|
||||||||||||
-pivot(-pvt)
|
float float
|
|
||||||||||
|
||||||||||||
-pivotU(-pvu)
|
float
|
|
||||||||||
|
||||||||||||
-pivotV(-pvv)
|
float
|
|
||||||||||
|
||||||||||||
-random(-ran)
|
float
|
|
||||||||||
|
||||||||||||
-rotationAngle(-ra)
|
angle
|
|
||||||||||
|
||||||||||||
-scale(-s)
|
float float
|
|
||||||||||
|
||||||||||||
-scaleU(-su)
|
float
|
|
||||||||||
|
||||||||||||
-scaleV(-sv)
|
float
|
|
||||||||||
|
||||||||||||
-translate(-t)
|
float float
|
|
||||||||||
|
||||||||||||
-translateU(-tu)
|
float
|
|
||||||||||
|
||||||||||||
-translateV(-tv)
|
float
|
|
||||||||||
|
||||||||||||
// Opening up the textureView will make this example easier to visualize. // Create a plane and select it. polyPlane -n plg -sx 5 -sy 5 -w 10 -h 10; select plg; // Display map borders. polyOptions -ao -dmb true; // Translate selected UVs as the vector (0.0, 1.0). polyMoveFacetUV -tu 0.0 -tv 1.0 plgShape.map[30:35]; // Scale selected UVs as the scaling (0.5, 0.5); polyMoveFacetUV -su 0.5 -sv 0.5 plgShape.map[30:35];