Get the player's score
Retrieve the current player's score from a leaderboard.
読み終わるまでの所要時間 1 分最終更新 1ヶ月前
Get the entry for the player in the specified leaderboard with the
GetPlayerScoreAsyncpublic async void GetPlayerScore(string leaderboardId){ var scoreResponse = await LeaderboardsService.Instance .GetPlayerScoreAsync(leaderboardId); Debug.Log(JsonConvert.SerializeObject(scoreResponse));}
To get the score with any associated metadata, use the
IncludeMetadataGetPlayerScoreOptionspublic async void GetPlayerScore(string leaderboardId){ var scoreResponse = await LeaderboardsService.Instance .GetPlayerScoreAsync( leaderboardId, new GetPlayerScoreOptions { IncludeMetadata = true } ); Debug.Log(JsonConvert.SerializeObject(scoreResponse));}