我在Assets / plugins / Android中有这些文件:
这些文件是否正确?
当我点击我的按钮Ranking
时,我会看到手机如何加载Google Play游戏屏幕(典型的绿色屏幕)。
但是我无法使用我的帐户登录,而且无法看到排行榜。
这就是我的尝试:
public class BotonRanking : MonoBehaviour {
// Use this for initialization
void Start () {
clickar();
}
// Update is called once per frame
void Update () {
}
public void clickar() {
if (Social.localUser.authenticated) {
((PlayGamesPlatform)Social.Active).ShowLeaderboardUI ("APICODE");
} else {
Social.localUser.Authenticate ((bool success) => { });
}
}
}
其他剧本:
//SEND TO GOOGLE PLAY GAMES MY SCORE
Social.ReportScore(contador, "APICODE", (bool success) => {});