I want to store int array of highscore using ArrayPrefs2… I want to manage highscore for perticular level…
For that i have tried something like this. but its not working…
function SaveDate()
{
PlayerPrefsX.SetIntArray ("highScorelist",highScoreList);
}
function LoadData()
{
highScoreList = PlayerPrefsX.GetIntArray ("highScorelist" , -1 ,10);
}
But its not correct…
Anyone pleaze guide me to manage highscore…
Pleaze help me…
Thanks for your support and help…