2

I'm using https://github.com/GlitchGames/GGGameCentre library to publish score and to show leaderboard window.

The problem i have is that i'm pushing a score type "4.234" and at leaderboard window, my score changes to "0.042", i don't know why.

At itunes i have a configuration type "Score Format Type=Fixed Point - To 3 Decimals" and:

For english: Fixed Point (10,000,012.218)

And for spanish: Fixed Point (10,000,012.218)

Please, any help?

4

1 回答 1

1

即使您设置了定点 - 到 3 位小数,分数也必须是整数。

如果您提交 1234,您将获得 1.234

要解决您的问题,只需将您的分数乘以 1000,然后提交。

于 2014-08-31T00:10:35.617 回答