Viewport navigability suggestion

 From:  Michael Gibson
6145.2 In reply to 6145.1 
Hi Max, you can set this up in your current version if you want.

If you want something that works like videogame movement, go to Options > View > Rotate/Pan/Zoom options, and at the top set Rotation style = "First person". With that set, now mouse movements will look left/right/up/down in video game like fashion rotating around the camera point instead of pivoting around a point of interest as they normally do.

Then to make the arrow keys work go to Options > Shortcut keys and set these keyboard shortcuts up:

KeyCommand
LeftArrowscript: moi.ui.mainWindow.viewpanel.getViewport('3D').rotate( 'right', 3.0 );
RightArrowscript: moi.ui.mainWindow.viewpanel.getViewport('3D').rotate( 'left', 3.0 );
UpArrowscript: moi.ui.mainWindow.viewpanel.getViewport('3D').rotate( 'down', 3.0 );
DownArrow    script: moi.ui.mainWindow.viewpanel.getViewport('3D').rotate( 'up', 3.0 );


- Michael