我已使用下面的cordova插件连接到Google Play游戏服务。 https://github.com/artberri/cordova-plugin-play-games-services
一切正常。但是在文档中没有提到如何从排行榜获得用户评分。 我正在使用Phaser作为游戏引擎。
答案 0 :(得分:1)
查看源代码,您可以找到execute
函数中列出的各种操作。
似乎您可以使用一个executeGetPlayerScore
函数。
alejandro-lopez的fork似乎已收到最新更新,因此可能是您希望提交拉取请求以将其包括在文档中的fork,因为问题已关闭。
从询问者中获取示例代码:
window.plugins.playGamesServices.getPlayerScore(
{leaderboardId: 'someID'},
function(data) {
// do something with data.PlayerScore;
},function(e) {
alert(JSON.stringify(e));
}
);