public static bool BoardExists(string boardId)
string boardId |
The id of the leaderboard to find. |
---|
Returns if there is a leaderboard of the entered id in the manager’s data.
private void OnEnable()
{
if (LeaderboardManager.BoardExists("MyLeaderboard")
{
// Do stuff here...
}
}