Go to: Synopsis. Flags. Return value. Related. Python examples.
polyMapDel([constructionHistory=boolean], [name=string])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
polyMapDel is undoable, queryable, and editable.
Deletes texture coordinates (UVs) from selected faces.| Long name (short name) | [argument types] | Properties | ||
|---|---|---|---|---|
name(n)
|
string
|
|
||
|
||||
constructionHistory(ch)
|
boolean
|
|
||
|
||||
import maya.cmds as cmds # Create a plane. cmds.polyPlane( n='plg', sx=5, sy=5, w=20, h=20 ) # Delete the mapping from the given faces. cmds.polyMapDel( 'plg.f[11:13]', 'plg.f[16:18]' )