Changes the global manipulator parameters In query mode, return type is based on queried flag.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
forceRefresh (fr) | bool | ||
|
|||
handleSize (hs) | float | ||
|
|||
linePick (lp) | float | ||
|
|||
lineSize (ls) | float | ||
|
|||
middleMouseRepositioning (mm) | bool | ||
pointSize (ps) | float | ||
|
|||
preselectHighlight (psh) | bool | ||
Set whether manip handles should be highlighted when moving mouse.Flag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list. |
|||
refreshMode (rm) | int | ||
|
|||
relative (r) | bool | ||
|
|||
rememberActiveHandle (rah) | bool | ||
scale (s) | float | ||
|
|||
showExtrudeSliders (ses) | bool | ||
Derived from mel command maya.cmds.manipOptions
Example:
import pymel.core as pm
import maya.cmds as cmds
# Scales all handles by a 1.5 factor
pm.manipOptions( r=True, hs=1.5, ls=1.5 )
# All manips are scaled by 2
pm.manipOptions( s=2 )