void Start() {
Social.localUser.Authenticate (ProcessAuthentication);
}
void ProcessAuthentication (bool success) {
if (success) {
ILeaderboard leaderboard = Social.CreateLeaderboard();
leaderboard.id = "hoge-ranking";
leaderboard.LoadScores (result => {
int rankNo = leaderboard.localUserScore.rank;
Debug.Log(rankNo);
}
}
これで取れる。