What's the proper practice here in terms of leaderboards?
With one project, we render two different versions of our game, one for iOS and one for Android.
Now, should I put the two separate leaderboards in the game at once? or upload two different projects with each own leaderboard?
Best Answers
-
gingagaming FREELANCE GS DEV Posts: 1,685
If you put the ID in the behaviour in this format you can use one single ID for both iOS and android (including Amazon):
com_yourdomain_appname
If you use underscores, it's Amazon friendly and you can use the same ID for both platforms without having two versions.
-
gingagaming FREELANCE GS DEV Posts: 1,685
@Dell Agarpo said:
I have a score scene, will it be enough to put buttons there to check leaderboard or do I have to make another scene page to show the leaderboard?Each game is different but when displayed, the leaderboard overlays the screen it's on so you don't need a scene only for the leaderboard. Just somewhere to place the button.
Answers
Thank You
I have a score scene, will it be enough to put buttons there to check leaderboard or do I have to make another scene page to show the leaderboard?
Thanks again, this made a lot of thing clear as day.