Change default settings

General support.
Post Reply
User avatar
Relesto
Member
Member
Posts: 14
Joined: Sun Mar 10, 2019 11:06 am

How would I change the default settings in the menu (eg by default turn off motion blue, change aim sensitivity to 0, turn off bloom)?
User avatar
Lovatto
Admin
Admin
Posts: 1834
Joined: Sun Dec 07, 2014 3:18 pm
Contact:

There's not a default options for that, but you can easily set up in MainMenu -> bl_Lobby.cs -> LoadSettings() ->
for example this:

Code: Select all

 m_currentQuality = PlayerPrefs.GetInt(PropertiesKeys.Quality, 3);
3 = the default value (the thirds quality setting)
or

Code: Select all

 FrameRate = (PlayerPrefs.GetInt(PropertiesKeys.FrameRate, 0) == 1);
where 0 = false, if you want set the this true as default change for:

Code: Select all

 FrameRate = (PlayerPrefs.GetInt(PropertiesKeys.FrameRate, 1) == 1);
for the Post-Process options is more simply, in the MainMenu scene select the Toggle UI of the option that you want setup ->
there you will see the script "bl_PrefsLoader.cs" attached, simply set the bool "Default Bool".
How to find your Invoice Number: Here
How to find your Order Number: Here
Post Reply