Hotkey to increase/decrease FOV

 From:  Michael Gibson
9330.2 In reply to 9330.1 
Hi Dominik,

re:
> i wasn't able to find a script that increases/decreases FOV by a given step each time i
> press the hotkey. Is this possible in MoI?

Please try these pasted in as the "command" part of a shortcut key:

script: /* Widen field of view */ moi.ui.mainWindow.viewpanel.getViewport('3d').fieldOfViewAngle *= 1.1;

script: /* Decrease field of view */ moi.ui.mainWindow.viewpanel.getViewport('3d').fieldOfViewAngle *= 0.9;

- Michael