What's new

Cursor-centric rotation for the Space Navigator

MilesH

Alibre Super User
In case anyone else has missed this....

Left + Right button drag pivots the model around the point of geometry nearest the cursor.

To get this function with the Space Navigator et al, you need to press L+RMB and drag slightly first, this activates the "cursor-centric" centre of rotation mode (rotation cursor icon will appear) which will then also apply to the Space Navigator.
 

MilesH

Alibre Super User
As it's not a "transparent" command mode, I don't think that would help, Nate. I'd be happy to be proved wrong :)
 

NateLiquidGravity

Alibre Super User
Alibre doesn't know if you are holding down the mouse or the script is. You could set it up like a caps lock function to hold or let up the mouse buttons.

Something like this:
Code:
MouseIsDown=0

#f::
  If MouseIsDown=0
  {
    Click down
    Click down right
    MouseIsDown=1
  }
  Else
  {
    Click up
    Click up right
    MouseIsDown=0
  }
Return
 

MilesH

Alibre Super User
NateLiqGrav said:
Alibre doesn't know if you are holding down the mouse or the script is.
Sure, but if you can't use the mouse for anything else, what's the point?

Can you replicate cursor drag with AHK?
 

MilesH

Alibre Super User
The problem is that once this cursor-centric mode is activated, it takes "center stage" (to use a technical term :) ) and no other commands get a look in..... So, there's nothing much to be gained from relieving the mouse of its duties...
 
Top