Go to: Synopsis. Return value. Flags. Python examples.
ctxEditMode([buttonDown=boolean], [buttonUp=boolean])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
ctxEditMode is undoable, NOT queryable, and NOT editable.
This command tells the current context to switch edit modes.None
Long name (short name) | Argument types | Properties | ||
---|---|---|---|---|
buttonDown(btd)
|
boolean
|
|||
|
||||
buttonUp(btu)
|
boolean
|
|||
|
Flag can appear in Create mode of command | Flag can appear in Edit mode of command |
Flag can appear in Query mode of command | Flag can have multiple arguments, passed either as a tuple or a list. |
import maya.cmds as cmds # Create a poly cube cmds.polyCube(w=2, h=2, d=2, n='pCube1') # Create a new rotate manip context, then switch to it. cmds.manipRotateContext('manipRotateContext1') cmds.setToolTo('manipRotateContext1') # Switch to edit mode to change pivots cmds.ctxEditMode()