Wish list: a setting to automatically orbit (rotate view) around, say, anything hovered over

 From:  Michael Gibson
11558.11 In reply to 11558.10 
Hi halmi,

re:
> Would that limit the abrupt view shift only to the Moment of Initiation?

I guess so, it sounds pretty weird though.

You can try setting this up on a keyboard shortcut, it will set the pivot point to a point you pick without doing an area window:

script: /* Set 3D view rotation pivot */ var p = moi.ui.createPointPicker(); if ( p.waitForEvent() && p.event == 'finished' ) { moi.ui.mainWindow.viewpanel.getViewport('3D').targetpt = p.pt }

- Michael