문제

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?

도움이 되었습니까?

해결책

The score must be an integer even if you set up a Fixed Point - To 3 Decimals.

If you submit 1234 you would get 1.234

To fix you problem, just multiply your score with 1000 and then submit.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top