Hello everyone, is it possible for different users on the machine use an app and share the playerprefs data?
I believe the PlayerPrefs should be saved in the registry which technically can be shared across multiple users. I just want to confirm it’s possible.
On Windows it is technically possible: you can save stuff to Registry or to ProgramData directory, but you have to implement it yourself. In general saving PlayerPrefs per user is the right thing, there should be something very special for sharing them among users.
Thank you very much for your response, and yes, I’m looking for solution to store important data (registration information) across multiple users, so do you think if I just save it in one attribute called “Key” on the PlayerPrefs, it can be shared between users? Any problem involved with permissions?