I have gotten achievements working on Android, but now I am doing the ios implementation using GameCenter, when I try viewing either achievements or leader board, I am show "No Data Available". I can see the use is authenticated from my logs, however none of the stuff we have set up is visible, and just get the above no data message.
example code
UnityEngine.SocialPlatforms.GameCenter.GameCenterPlatform.ShowDefaultAchievementCompletionBanner(true);
public static void ShowAcheivementUI(bool force_login)
{
if (Authenticated)
Social.ShowAchievementsUI();
else if (force_login)
{
Authenticate(
b =>
{
if (b)
Social.ShowAchievementsUI();
});
}
}
↧