Page 1 of 1

Launch options

Unread postPosted: Mon Oct 22, 2012 9:31 pm
by glenn68
Where can I find the lists of launch options that will allow me to set my FPS to 30 and able the 5 times key short cut with ctrl,shift and 5?

Thanks,
Glenn

Re: Launch options

Unread postPosted: Tue Oct 23, 2012 7:09 am
by Machinist
In your case, exactly as typed ahead (also case sensitive):
Code: Select all
-FPSLimit=30 EnableAsyncKeys


I was also used to set the FOV to 52 or 55 (IMHO closer to human eyes perspective), so for example:
Code: Select all
-FPSLimit=30 EnableAsyncKeys -SetFOV=55

Cheers,
Doc.

Some more (RW2/RW3) from NERW Forum:
-DisableEAX
-DisableSignals
-DisableSound
-EnableSoundDebugDialogs
-LogLocStrings
-LogMate
-NoPlayerTrain
-NoWagonBraking
-QuickStartSteam
-ResetAchievements
-ResetStats
-SetFOV=xx xx = a value like 60 (pattern)
-SetLogFilters
-ShowControlStateDialog
-UseFastBlueprintCache
-ValidateNetwork
-ValidateSignals
-VerboseAudioDebug
-lua-debug-messages
-nvperfhud
-FPSLimit=xx xx = a value like 30

Re: Launch options

Unread postPosted: Tue Oct 23, 2012 7:16 pm
by glenn68
Doc,
Thanks. I had this before but lost the document I save the info to.

I appreciate the help.

Glenn

Re: Launch options

Unread postPosted: Tue Oct 23, 2012 8:08 pm
by XDriver
Doc. You mention changing FOV. You can also just edit the engineScript.lua found in railworks\dev\scripts folder.
mine's set at 45. Change setFov(45) to what ever you desire. *!!wink!!*

Code: Select all
-- 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(45)
   setDof(0, 4000)
end

-- This function is automatically run if the game is a release build
function autorun()
   setFov(45)
   setDof(0, 4000)
end