Transfer information from one polygonal object to another one. Both objects must have identical topology, that is same vertex, edge, and face numbering. The flags specify which of the vertices, UV sets or vertex colors will be copied.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
alternateObject (ao) | unicode | ||
|
|||
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. |
|||
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. |
|||
uvSets (uv) | bool | ||
|
|||
vertexColor (vc) | bool | ||
|
|||
vertices (v) | bool | ||
|
Derived from mel command maya.cmds.polyTransfer
Example:
import pymel.core as pm
import maya.cmds as cmds
# Create two objects with same a cube.
pm.polyCube( sx=5, sy=5, sz=5, n='plg' )
pm.polyCube( sx=5, sy=5, sz=5, n='atlPlg' )
# Tweak the geometry of the first object
pm.select( 'plg.vtx[0:50]', r=True )
pm.move( .1, .2, .3, r=True )
# Spherical mapping on the alternate object
pm.polyProjection( 'atlPlg.f[0:149]', type='Spherical' )
# Copy the UVs from the alternate to the first object.
pm.polyTransfer( 'plg', uv=1, ao='atlPlg' )