For some reason when I pull scores it only returns 10 score max.
All of my leaderboards are live.
I use the same basic code that you see on all the forums to scroll through the leaderboard entries.
ILeaderboard flipcoinsLB = Social.CreateLeaderboard();
flipcoinsLB.id = “FlipCoins”;
flipcoinsLB.LoadScores(flipcoinsscores => {
foreach (IScore score in flipcoinsLB.scores) {
if (Social.localUser.id == score.userID) {
GlobalScript.flipCoins = (int)score.value;
}
}
});
There are about 26 unique entries in the list. When I pull up the leaderboard you can see that there are well more that 10 unique entries.