用户分数对象和应用程序分数对象

发布于 2024-12-06 12:51:47 字数 346 浏览 4 评论 0原文

随着新的分数和成就的推出,我有以下问题

  1. 用户的分数对象用户的应用分数对象
  2. 设置其中一项会影响另一项吗?
  3. 在设置分数对象时,它是被覆盖还是聚合?

文档中有一个关于“游戏每场比赛限制为 1000 分”的声明......游戏

  1. 是否总共指的是应用程序?
  2. 每人的游戏?
  3. 每人每场比赛的人数,例如(每回合/每次尝试/每轮)?

我问这个问题是因为我正在开发一款游戏,用户将有两组评分,我希望它们既可以单独计算,也可以作为总计计算。

With the new Scores and Achievements roll-outs I have the following questions

  1. Is there a difference between the user's scores object and the
    app's scores object for the user?
  2. Does setting one affect the other?
  3. In setting a scores object is it overwritten or aggregated?

There was a statement made in the docs about "games limited to 1000 points per game" for scores...does game refer to

  1. The App in total?
  2. the game per person?
  3. the per person per game play e.g. (per turn/ per try/ per round)?

I ask this because I am developing a game where a user would have 2 sets of scoring and I want them to be counted both separately and as an aggregate.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

峩卟喜欢 2024-12-13 12:51:47

我一直在研究分数和成就,这就是我发现的:

  1. 分数和成就是分开的。
  2. 更改分数不会影响成就。
  3. 添加成就不会影响分数。
  4. 分数不会汇总,因此如果您为用户分配分数,该用户将获得分配的新分数。
  5. 将成就更像是用户在完成任务时获得的奖励积分。如果您想将奖励积分添加到用户的分数中,则必须为该用户分配一个新分数。
  6. 我注意到分数或成就的更新主要在页面重新加载时出现。

7.创建成就时,图片不要使用https链接,否则不会添加。

8)成就总分不能超过1000分,但分数可以更高(不知道多高)。

我强烈建议您首先在测试应用程序中创建成就,然后在确定所需内容后将其添加到您的应用程序中。
希望我能提供帮助。

I've been playing around with scores and achievements and this is what I found out:

  1. scores and achievements are separate.
  2. Changing the score doesn't affect the achievements.
  3. Adding achievements don't affect the score.
  4. Scores don't aggregate, so if you assign a score to a user, the user will have the new score assigned.
  5. Consider the achievements more like bonus points a user gets when doing a task. If you want to add the bonus points to a user's score, you'll have to assign a new score to the user.
  6. I noticed that the updates in score or acheivements appear mainly when the page reloads.

7.When creating achievements, don't use an https link for the image else it won't be added.

8) The total points for achievements should not be greater than 1000pts but scores can go higher (how high I do not know).

I strongly suggest creating the achievements first in a test app and adding them to your app when you're sure about what you want.
Hope I was able to help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文