Question by
Squirrel8 · Jan 04, 2018 at 03:49 PM ·
leaderboard
Leaderboard not found
I have a problem with leaderboard, first row ia correct - there is "success" in console, but the second throws an error "leaderboard is not found", but leaderboard is created previously
Social.localUser.Authenticate((bool success) => { if (success) Debug.Log("success"); else Debug.Log("failed"); });
Social.ReportScore(PlayerPrefs.GetInt("nResult"), GPGSIds.leaderboard, (bool success) =>
{
if (success) Debug.Log("win"); else Debug.Log("faild");
});
Comment
Your answer