Manage the window to display/edit the polygonal selection constraint parameters
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
changeCommand (cc) | unicode, unicode | ||
|
|||
create (c) | bool | ||
|
|||
delete (d) | bool | ||
|
Derived from mel command maya.cmds.polySelectConstraintMonitor
Example:
import pymel.core as pm
# create Monitor
pm.polySelectConstraintMonitor( create=True )
# set up a callback for when the constraints are changed
pm.polySelectConstraintMonitor( changeCommand=('polygonConstraintUpdate', 'MyPanel'));
# delete Monitor
pm.polySelectConstraintMonitor( delete=True )