Hi,
So I am not sure if this is suppose to go here or in the scripting section.
Anywho my problem at the moment is my leaderboards and achievement ui are not opening when I press the button on my app. The app is published and the achievements do unlock so I know the sign in and so on is working.
public void OpenLeaderboardsScore()
{
if (Social.localUser.authenticated)
{
((PlayGamesPlatform)Social.Active).ShowLeaderboardUI (LEADERBOARDS_SCORE);
}
}
public void OpenAchievements()
{
if (Social.localUser.authenticated)
{
((PlayGamesPlatform)Social.Active).ShowAchievementsUI ();
}
}
I have looked at different variations of the codes used and tried them all but still not luck.
Any help would be appreciated.
Note the methods tried before:
PlayGamesPlatform.Instance.ShowLeaderboardUI ();
PlayGamesPlatform.Instance.ShowAchievementsUI ();
Social.ShowAchievementsUI ();
Social.ShowLeaderboardUI ();