سؤال

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