Hi Neil, maybe you could show an illustration of how you want to use it?
The Transform > Move tool will already give you the option for tracking along a surface normal if the base point for the move is on a surface.
For example like this:
Is it that you want to turn off the other kinds of straight snaps?
Here's a script that will turn off tangent, perpendicular, and x/y plane straight snaps and re-engage them when it is triggered a second time:
if ( moi.drawingAids.straightSnapAngle == 0.0 ) { moi.drawingAids.straightSnapAngle = 90.0; moi.drawingAids.straightSnapEnableTangent = true; moi.drawingAids.straightSnapEnablePerpendicular = true; } else { moi.drawingAids.straightSnapAngle = 0.0; moi.drawingAids.straightSnapEnableTangent = false; moi.drawingAids.straightSnapEnablePerpendicular = false; }
> ps could it be possible to turn the orient tool into a sort of gizmo
> that you could move object using the 3 aligned arms.
In the future I would like to look into some animation-style gizmo type controls. Probably the way you would do something like that now would be to set the construction plane, after you do that regular moves will go in that plane and when straight snap is engaged it moves in those axis directions.
- Michael
|