Explicitly forces the subdivision surface to display components at a particular level of refinement.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
level (l) | int | ||
|
|||
relative (r) | bool | ||
|
Derived from mel command maya.cmds.changeSubdivComponentDisplayLevel
Example:
import pymel.core as pm
import maya.cmds as cmds
# change the selected subdivision surface to display level 4 components
pm.changeSubdivComponentDisplayLevel( l=4 )
# increase the display level of the selected subivision surface by 1
pm.changeSubdivComponentDisplayLevel( l=1, r=True )