Declaration


public static Leaderboard GetLeaderboard(string boardId)

Parameters


string boardId The id of the leaderboard to find.

Description


Gets the leaderboard of the entered id if it exists in the manager.

Example


private void OnEnable()
{
		Leaderboard board = LeaderboardManager.GetLeaderboard("MyBoard");
}