Declaration


public static void CreateLeaderboard(string boardId, LeaderboardType boardType)

Parameters


string boardId The id of the leaderboard to find.
LeaderboardType boardType The type of leaderboard to make.

Description


Creates a leaderboard with the entered id if it doesn’t exist already.

Example


private void OnEnable()
{
		LeaderboardManager.CreateLeaderboard("MyLeaderboard", LeaderboardType.Score);
}