Go to: Synopsis. Return value. Flags. Python examples.
setXformManip([showUnits=boolean], [suppress=boolean], [useRotatePivot=boolean], [worldSpace=boolean])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
setXformManip is undoable, queryable, and NOT editable.
This command changes some of the settings of the xform manip, to control its appearance.
None
In query mode, return type is based on queried flag.
Long name (short name) | Argument types | Properties | ||
---|---|---|---|---|
showUnits(su)
|
boolean
|
![]() |
||
|
||||
suppress(s)
|
boolean
|
![]() |
||
|
||||
useRotatePivot(urp)
|
boolean
|
![]() |
||
|
||||
worldSpace(ws)
|
boolean
|
![]() |
||
|
![]() |
![]() |
![]() |
![]() |
import maya.cmds as cmds # makes manip disappear cmds.setXformManip( suppress=True ) # set manip to object space cmds.setXformManip( worldSpace=False ) # returns false cmds.setXformManip( q=True, ws=True )