Projects a map onto an object, using several orthogonal projections simultaneously.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
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. |
|||
createNewMap (cm) | bool | ||
|
|||
insertBeforeDeformers (ibd) | bool | ||
This flag specifies if the projection node should be inserted before or after deformer nodes already applied to the shape. Inserting the projection after the deformer leads to texture swimming during animation and is most often undesirable.C: Default is on.Common flags |
|||
layout (l) | int | ||
|
|||
layoutMethod (lm) | 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. |
|||
optimize (o) | int | ||
Use two different flavors for the cut generation.0 Every face is assigned to the best plane. This optimizes the map distortion.1 Small UV pieces are incorporated into larger ones, when the extra distortion introduced is reasonable. This tends to produce fewer UV pieces. |
|||
percentageSpace (ps) | float | ||
When layout is set to square, this value is a percentage of the texture area which is added around each UV piece. It can be used to ensure each UV piece uses different pixels in the texture.Maximum value is 5 percent. |
|||
pivot (pvt) | float, float, float | ||
|
|||
pivotX (pvx) | float | ||
|
|||
pivotY (pvy) | float | ||
|
|||
pivotZ (pvz) | float | ||
|
|||
planes (p) | int | ||
|
|||
projectBothDirections (pb) | bool | ||
This flag specifies which reference to use. If “on” : projections are mirrored on directly opposite faces. If “off” : projections are not mirrored on opposite faces.C: Default is “off”.Q: When queried, this flag returns an integer.Global Values |
|||
rotate (ro) | float, float, float | ||
|
|||
rotateX (rx) | float | ||
|
|||
rotateY (ry) | float | ||
|
|||
rotateZ (rz) | float | ||
|
|||
scale (s) | float, float, float | ||
|
|||
scaleMode (sc) | int | ||
|
|||
scaleX (sx) | float | ||
|
|||
scaleY (sy) | float | ||
|
|||
scaleZ (sz) | float | ||
|
|||
skipIntersect (si) | bool | ||
|
|||
translate (t) | float, float, float | ||
|
|||
translateX (tx) | float | ||
|
|||
translateY (ty) | float | ||
|
|||
translateZ (tz) | float | ||
|
|||
uvSetName (uvs) | unicode | ||
Specifies the name of the UV set to edit uvs on. If not specified will use the current UV set if it exists.When createNewMap is on, the name is used to generate a new unique UV set name. |
|||
worldSpace (ws) | bool | ||
This flag specifies which reference to use. If “on” : all geometrical values are taken in world reference. If “off” : all geometrical values are taken in object reference.C: Default is “on”.Q: When queried, this flag returns an integer. |
Derived from mel command maya.cmds.polyAutoProjection
Example:
import pymel.core as pm
import maya.cmds as cmds
# Create a plane with default UVs.
pm.polySphere( n='sph' )
# Automatic projections with 6 planes.
pm.polyAutoProjection( 'sphShape.f[*]' )