Declaration


public static bool IsInitialized { get; }

Description


Gets if the leaderboard manager is initialized or not, mostly if the save has been loaded. This happens on [RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSceneLoad)] so it should be initialized before the you need to access it.

Example


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