Use Player Leaderboards
Submitting Score
string leaderboardKey = "my_leaderboard";
int score = 1000;
LootLockerSDKManager.SubmitScore("", score, leaderboardKey, (response) =>
{
if (!response.success) {
Debug.Log("Could not submit score!");
Debug.Log(response.errorData.ToString());
return;
}
Debug.Log("Successfully submitted score!");
});Get Leaderboard Entries
Get Single Entry on Leaderboard
Last updated
Was this helpful?



