Changes a subdivision surface region based on the command parameters. The command operates on the selected subdivision surfaces.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
action (a) | int | ||
|
|||
level (l) | int | ||
Specify the level of the subdivision surface to perform the operationFlag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list. |
Derived from mel command maya.cmds.changeSubdivRegion
Example:
import pymel.core as pm
import maya.cmds as cmds
# delete the selection region on the base mesh
pm.changeSubdivRegion( a=1, l=0 )
# expand the selection region at the current level
pm.changeSubdivRegion( a=2 )