Ejemplo n.º 1
0
 public void showLeaderBoards()
 {
     if (Social.localUser.authenticated)
     {
         GooglePlayScript.AddScoreToLeaderBoard(GPGSIds.leaderboard_leaderboard);
         GooglePlayScript.ShowLeaderBoardUI();
     }
     else
     {
         playservicenotifyPanel.SetActive(true);
     }
 }
Ejemplo n.º 2
0
 void signIn()
 {
     Social.localUser.Authenticate((bool success)
                                   =>
     {
         if (success)
         {
             notifyPanel.SetActive(false);
             GooglePlayScript.ShowLeaderBoardUI();
             Debug.Log("bak bu giriş");
         }
         else
         {
             notifyPanel.SetActive(false);
         }
     }
                                   );
 }
Ejemplo n.º 3
0
 public void showLeaderBoards()
 {
     GooglePlayScript.ShowLeaderBoardUI();
 }