- Home /
Best way to store data for multi platform aplication
Hello, Im making a small Project for android, pc and web and i don't know what is the best way to store the data of the users. I was thinking to store it in XML file but this one can be easy changed by any one. The question is what method is better to store the user score for each scene.
Comment
Best Answer
Answer by MarkFinn · Nov 23, 2013 at 06:50 PM
Is there any particular reason not to use PlayerPrefs for this? A table of scores and names could easily be converted to a single string and saved/read back using PlayerPrefs.GetString and PlayerPrefs.SetString.