Feature Request: Gumball Snappy/Smooth Toggle

The only way to toggle the drag mode is with the following:

-_Options O B S EnterEnd

It’s a little clunky and ignores NoEcho. There’s already a command for everything but the drag mode: _Gumball toggle, _GumballAlignment, _GumballRelocate, _GumballScaleMode, _GumballReset, and _GumballAutoReset.

It’d be nice if there was a:

_GumballDragMode _Snappy _Smooth _Toggle

1 Like

Hi @EricM, you might use below python snippet to toggle:

import Rhino

def ToggleSnappyGumball():
    
    state = Rhino.ApplicationSettings.ModelAidSettings.SnappyGumballEnabled
    Rhino.ApplicationSettings.ModelAidSettings.SnappyGumballEnabled = not state
    
    print "SnappyGumball={}".format("Yes" if not state else "No")
    
ToggleSnappyGumball()

_
c.

2 Likes

and there is:

'_NoEcho _GumballSettings s Enter
4 Likes

3 ways to rome :wink:

1 Like

Hidden command FTW.

Yes that’s probably a mistake.