Irishrailguy wrote:TOMMO79 wrote:How do you manage to get F.O.V like that? I've tried adding a line of text in the startup settings of the steam menu but it hasn't made a difference
Put '-SetFOV=15' in the launch options, make sure there's a space before the - if you have other settings in there already.
Kev
Or go to: ?:\Steam\SteamApps\common\RailWorks\dev\scripts and open the file engineScript, then change the FOV value in "setFov(XX)", default is 65.
-- setup lighting environment
--
-- fogParams ( enabled, start distance, end distance, r, g, b )
--
-- bloomEnable ( enabled )
--
-- setFov ( fovDeg )
--
-- setDof ( nearPlane, focalPoint, farPlane )
--------------------------
-- This function is automatically run if the game is a debug build
function autorunDEBUG()
setFov(XX)
setDof(0, 4000)
end
-- This function is automatically run if the game is a release build
function autorun()
setFov(XX)
setDof(0, 4000)
end
Regards Claus