Hello, I have implemented google play services in my game. I can connect to google play games just fine. I choose my account and hit okay, the screen loads- all this is good.
When I try to view the leaderboard however, nothing happens when i tap the button.
from my leaderboard controller
public void OpenLeaderboardsScore()
{
if (Social.localUser.authenticated)
{
PlayGamesPlatform.Instance.ShowLeaderboardUI(LEADERBOARDS_SCORE);
}
}
My main menu controller which calls the above function:
public void OpenLeaderboardsScoreUI()
{
LeaderboardsController.instance.OpenLeaderboardsScore();
}
In my Main Menu scene, I have a gameobject for the leaderboards controller instance, and then on the button for the leaderboard i have an onclick() Main menu controller.openleaderboardsscoreui()
My Console in unity shows 0 errors. Does anyone know what might be wrong? or how i can go about figuring out the issue?
Thank you in advance.