- Home /
Player prefs not working on other computer
I made a game with player prefs on my computer(with unity) but when I tried it on another computer(without unity)it did not work - is this normal?
I'm not sure what you try to achieve, but the player preferences are saved locally, so obviously the player prefs on a computer wil not be the same that player prefs on another computer.
Answer by liortal · Aug 04, 2014 at 08:03 PM
The PlayerPrefs class provides a simplified and easy to use API for saving persistent data (in the Editor, PC or mobile platforms).
Data that is saved in one machine will not be available on the other machine though. It has to be saved there as well.
On Windows, for example, Unity uses the registry to save data from PlayerPrefs.
You can read more about it in the documentation page here: PlayerPrefs
Your answer