Zoom

Allows you to zoom to see distant objects.
Use Game Tick Scripting module to assign key bindings. Example script:
if (input.isKeyDown("C"))
    zoom.start(10, 0.2);
else
    zoom.stop();
                
Here:
10 - final FOV
0.2 - how quickly zoom (in seconds, can be zero)