Go to: Synopsis. Return value. Flags. MEL examples.

Synopsis

manipOptions [-forceRefresh] [-handleSize float] [-hideManipOnCtrl boolean] [-hideManipOnShift boolean] [-hideManipOnShiftCtrl boolean] [-linePick float] [-lineSize float] [-pivotRotateHandleOffset int] [-planeHandleOffset int] [-pointSize float] [-preselectHighlight boolean] [-refreshMode int] [-relative] [-rememberActiveHandle boolean] [-rememberActiveHandleAfterToolSwitch boolean] [-scale float] [-showPivotRotateHandle int] [-showPlaneHandles int]

manipOptions is undoable, queryable, and NOT editable.

Changes the global manipulator parameters

Return value

None

In query mode, return type is based on queried flag.

Flags

forceRefresh, handleSize, hideManipOnCtrl, hideManipOnShift, hideManipOnShiftCtrl, linePick, lineSize, pivotRotateHandleOffset, planeHandleOffset, pointSize, preselectHighlight, refreshMode, relative, rememberActiveHandle, rememberActiveHandleAfterToolSwitch, scale, showPivotRotateHandle, showPlaneHandles
Long name (short name) Argument types Properties
-forceRefresh(-fr) create
Force a refresh if there is any deferred evaluation.
-handleSize(-hs) float createquery
Sets the maximum handles size in pixels, for small handles
-hideManipOnCtrl(-hmc) boolean createquery
Hide transform manip when the Ctrl key is pressed.
-hideManipOnShift(-hms) boolean createquery
Hide transform manip when the Shift key is pressed.
-hideManipOnShiftCtrl(-hsc) boolean createquery
Hide transform manip when the Shift and Ctrl keys are both pressed.
-linePick(-lp) float createquery
Set the width of picking zone for long handles
-lineSize(-ls) float createquery
Set the width of long handles (drawn as lines)
-pivotRotateHandleOffset(-pro) int createquery
Set the offset of the pivot rotation handle.
-planeHandleOffset(-pho) int createquery
Set the offset of the planar drag handles.
-pointSize(-ps) float createquery
Set the size of points (used to display previous states)
-preselectHighlight(-psh) boolean createquery
Set whether manip handles should be highlighted when moving mouse.
-refreshMode(-rm) int createquery
Set the global refresh mode.
-relative(-r) create
All values are interpreted as multiplication factors instead of final values.
-rememberActiveHandle(-rah) boolean createquery
Set whether manip handles should be remembered after selection change.
-rememberActiveHandleAfterToolSwitch(-rhs) boolean createquery
Set whether manip handles should be remembered after manipulator change.
-scale(-s) float createquery
Global scaling factor of all manipulators
-showPivotRotateHandle(-spr) int createquery
Toggles the visibility of the pivot rotation handle.
-showPlaneHandles(-sph) int createquery
Toggles the visibility of the planar drag handles.

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 be used more than once in a command.

MEL examples

// Scales all handles by a 1.5 factor
manipOptions -r -hs 1.5 -ls 1.5;

// All manips are scaled by 2
manipOptions -s 2;