Optimizes selected UVs.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
applyToShell (applyToShell) | bool | ||
|
|||
areaWeight (aw) | float | ||
|
|||
caching (cch) | bool | ||
|
|||
constructionHistory (ch) | bool | ||
Turn the construction history on or off (where applicable). If construction history is on then the corresponding node will be inserted into the history chain for the mesh. If construction history is off then the operation will be performed directly on the object.Note:If the object already has construction history then this flag is ignored and the node will always be inserted into the history chain. |
|||
globalBlend (gb) | float | ||
This allows the user to blend between a local optimization method (globalBlend = 0.0) and a global optimization method (globalBlend = 1.0). The local optimization method looks at the ratio between the triangles on the object and the triangles in UV space. It has a side affect that it can sometimes introduce tapering problems. The global optimization is much slower, but takes into consideration the entire object when optimizing uv placement. |
|||
globalMethodBlend (gmb) | float | ||
The global optimization method uses two functions to compute a minimization. The first function controls edge stretch by using edges lengths between xyz and uv. The second function penalizes the first function by preventing configurations where triangles would overlap. For every surface there is a mix between these two functions that will give the appropriate response. Values closer to 1.0 give more weight to the edge length function. Values closer to 0.0 give more weight to surface area. The default value of ‘0.5’ is a even mix between these two values. |
|||
iterations (i) | int | ||
|
|||
name (n) | unicode | ||
|
|||
nodeState (nds) | int | ||
Defines how to evaluate the node. 0: Normal1: PassThrough2: Blocking3: Internally disabled. Will return to Normal state when enabled4: Internally disabled. Will return to PassThrough state when enabled5: Internally disabled. Will return to Blocking state when enabledFlag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list. |
|||
optimizeAxis (oa) | int | ||
|
|||
pinSelected (ps) | bool | ||
|
|||
pinUvBorder (pub) | bool | ||
|
|||
scale (s) | float | ||
|
|||
stoppingThreshold (ss) | float | ||
|
|||
useScale (us) | bool | ||
|
|||
uvSetName (uvs) | unicode | ||
|
|||
worldSpace (ws) | bool | ||
Derived from mel command maya.cmds.polyOptUvs
Example:
import pymel.core as pm
import maya.cmds as cmds
# Create a sphere and select it.
pm.polySphere()
# Optimise the position of some Uvs
pm.polyOptUvs( 'pSphere1.map[189:398]' )