Maybe this can help. I got this script off the forum here somewhere. Its resets the perspective view to a set angle. You can change the angle in the script. Set it up with a shortcut key.
script: /* 3d preset */ var v = moi.ui.mainWindow.viewpanel.getViewport('3D'); v.leftRightAngle = 45; v.upDownAngle = -45; v.tiltAngle = 0;
|