Hi,
I’m adding Game Center support to my game using Unity 3.5. I’m working in sandbox mode.
Authentications and achievements works properly but I can’t report scores.
When I use this code:
Social.Active.ReportScore (scoreValue, "total_score", success => {
Debug.Log(success ? "Reported score successfully" : "Failed to report score");
});
I got the “success” answer but the leaderboard is always empty. I’m missing something ?