Changes the global manipulator parameters In query mode, return type is based on queried flag.
Flags:
Long Name / Short Name | Argument Types | Properties | |
---|---|---|---|
forceRefresh / fr | bool | ![]() |
|
|
|||
handleSize / hs | float | ![]() ![]() |
|
|
|||
hideManipOnCtrl / hmc | bool | ![]() ![]() |
|
|
|||
hideManipOnShift / hms | bool | ![]() ![]() |
|
|
|||
hideManipOnShiftCtrl / hsc | bool | ![]() ![]() |
|
|
|||
linePick / lp | float | ![]() ![]() |
|
|
|||
lineSize / ls | float | ![]() ![]() |
|
|
|||
middleMouseRepositioning / mm | bool | ||
pivotRotateHandleOffset / pro | int | ![]() ![]() |
|
|
|||
planeHandleOffset / pho | int | ![]() ![]() |
|
|
|||
pointSize / ps | float | ![]() ![]() |
|
|
|||
preselectHighlight / psh | bool | ![]() ![]() |
|
|
|||
refreshMode / rm | int | ![]() ![]() |
|
|
|||
relative / r | bool | ![]() |
|
|
|||
rememberActiveHandle / rah | bool | ![]() ![]() |
|
|
|||
rememberActiveHandleAfterToolSwitch / rhs | bool | ![]() ![]() |
|
|
|||
scale / s | float | ![]() ![]() |
|
|
|||
showExtrudeSliders / ses | bool | ||
showPivotRotateHandle / spr | int | ![]() ![]() |
|
|
|||
showPlaneHandles / sph | int | ![]() ![]() |
|
|
Derived from mel command maya.cmds.manipOptions
Example:
import pymel.core as pm
# 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 )