Saving in Regedit

So you can save variables with PlayerPrefs.SaveInt (or float or string). However I was wondering if you could save it to a different directory than CURRENT_USER/SOFTWARE/COMPANYNAME/GAMENAME. Like can you save it where ever you wish? If so how would one do that?

On Windows, PlayerPrefs are saved in the registry, and it’s not possible to change that.

You can create whatever Registry value you want, where every you want. You don’t have to use PlayerPrefs.

Use the Registry() from MSDN as a guide.