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

Synopsis

manipOptions [-forceRefresh] [-handleSize float] [-linePick float] [-lineSize float] [-planeHandleOffset int] [-pointSize float] [-preselectHighlight boolean] [-refreshMode int] [-relative] [-scale float] [-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, linePick, lineSize, planeHandleOffset, pointSize, preselectHighlight, refreshMode, relative, scale, showPlaneHandles
Long name (short name) Argument types Properties
-relative(-r) create
All values are interpreted as multiplication factors instead of final values.
-scale(-s) float createquery
Global scaling factor of all manipulators
-handleSize(-hs) float createquery
Sets the maximum handles size in pixels, for small handles
-lineSize(-ls) float createquery
Set the width of long handles (drawn as lines)
-linePick(-lp) float createquery
Set the width of picking zone for long handles
-pointSize(-ps) float createquery
Set the size of points (used to display previous states)
-showPlaneHandles(-sph) int createquery
Toggles the visibility of the planar drag handles.
-planeHandleOffset(-pho) int createquery
Set the offset of the planar drag handles.
-refreshMode(-rm) int createquery
Set the global refresh mode.
-forceRefresh(-fr) create
Force a refresh if there is any deferred evaluation.
-preselectHighlight(-psh) boolean createquery
Set whether manip handles should be highlighted when moving mouse.

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;