Declaration


public static SerializableDictionary<string, Leaderboard> AllLeaderboards { get; }

Description


Gets all the leaderboards stored in the manager. This is mostly used for editor stuff but you can access it if you need to.

Example


private void OnEnable()
{
		Debug.Log(LeaderboardManager.AllLeaderboards);
}