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