Go to: Synopsis. Return value. Keywords. Related. Flags. MEL examples.
polyEditUV [-angle float] [-pivotU float] [-pivotV float] [-relative boolean] [-rotation boolean] [-scale boolean] [-scaleU float] [-scaleV float] [-uValue float] [-uvSetName string] [-vValue float]
polyEditUV is undoable, queryable, and NOT editable.
Command edits uvs on polygonal objects. When used with the query flag, it returns the uv values associated with the specified components.boolean | Success or Failure. |
In query mode, return type is based on queried flag.
Long name (short name) | Argument types | Properties | ||
---|---|---|---|---|
-angle(-a)
|
float
|
![]() ![]() |
||
|
||||
-pivotU(-pu)
|
float
|
![]() ![]() |
||
|
||||
-pivotV(-pv)
|
float
|
![]() ![]() |
||
|
||||
-relative(-r)
|
boolean
|
![]() ![]() |
||
|
||||
-rotation(-rot)
|
boolean
|
![]() ![]() |
||
|
||||
-scale(-s)
|
boolean
|
![]() ![]() |
||
|
||||
-scaleU(-su)
|
float
|
![]() ![]() |
||
|
||||
-scaleV(-sv)
|
float
|
![]() ![]() |
||
|
||||
-uValue(-u)
|
float
|
![]() ![]() |
||
|
||||
-uvSetName(-uvs)
|
string
|
![]() ![]() |
||
|
||||
-vValue(-v)
|
float
|
![]() ![]() |
||
|
![]() |
![]() |
![]() |
![]() |
// To query the u and v values of selected uvs: polyEditUV -query ; // To tweak the u and v values of selected uvs: polyEditUV -relative true -uValue 0.05925926 -vValue 0.05555556 ; // To set absolute values for u and v values of selected uvs: polyEditUV -relative false -uValue 0.556 -vValue 0.56 ; // To rotate selected uv points about a pivot: polyEditUV -pivotU 0.5 -pivotV 0.5 -angle -15; // To scale selected uv points about a pivot: polyEditUV -pivotU 0.5 -pivotV 0.5 -scaleU -0.06 -scaleV -0.06;