public static void CreateOrGetLeaderboard(string boardId, LeaderboardType boardType)
string boardId |
The id of the leaderboard to find. |
---|---|
LeaderboardType boardType |
The type of leaderboard to make. |
Creates or get an existing leaderboard with the entered id if it doesn’t exist already.
private void OnEnable()
{
var board = LeaderboardManager.CreateOrGetLeaderboard("MyLeaderboard", LeaderboardType.Score);
}