Ejemplo n.º 1
0
    private void PostToLeaderboard()
    {
        //	Convert the currentScore from a float to a int
        int score = (int)currentScore;
        //	Convert the score int to a long called scoreToPost. ---- not realy converting (Long to Int dosnt seem to need converting.)
        long scoreToPost = score * 1000;

        //	Post the score to the leaderboard.
        GooglePlayManager.PostToLeaderboard(scoreToPost);
    }