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