I’ve submitted scores to google play leaderboards. That works fine but I want to show the player if he has earned a new highscore. After some extensive research I’ve found this in the documentation:
Sounds like what I’m looking for to display a fitting message. The problem is I just don’t know how to implement that exactly and I didn’t find any examples. (If it’s even included in the GP Services for Unity?)
I had something like that in my mind:
Social.ReportScore(finalScore,“CgkIiv33y44GEAIQCQ”, (bool success) => {
if(isHighScoreForLocalPlayerToday) Display("New Daily Highscore);
});