I’m working on a module that uses UDeveloperSettings for global module settings that should apply for all users (in the Project Settings menu).
However there are some debug settings in there that should ideally only apply on a per-user basis (in the Editor Settings menu). Putting them in UDeveloperSettings causes any changes to stomp other users’ settings.
Is there a UDeveloperSettings comparable class for editor/debug settings that works for a per-user basis?
This does display the settings in the Editor settings window, but this doesn’t save modified settings unless I click the Save As Default button, and then they’re saved into the Config folder which IS included in version control, while I was hoping to save to local Saved config settings only?
Ok so developer settings also seems to work for putting it in the editor prefs window (registering in StartupModule not needed), but same issue that it only saves the setting between sessions if I save as default.
Alright, I end up doing this a lot, but I solved the issue shortly after posting. Sorry again for spam, but in case anyone else comes across this:
This works if you have default config saved too.
Hit the Save As Default button in Editor preferences to create the default save .ini for your settings, and THEN changing settings (without saving default) will create the local .ini settings file in Saved\Config and will correctly restore those local settings between sessions.