How to implement high score?
Solved
Game Development
-
I heaven't heard of it. Maybe it is better to ask on http://www.forum.nokia.com/
Cheers
Tom -
V-Play Engine for qt-based apps and games comes with many components to make mobile development easier.
You can also add leaderboards and user profiles to your application with a few lines of code:
import VPlay 2.0 import VPlayApps 1.0 import QtQuick 2.9 App { // app navigation Navigation { NavigationItem { title: "User Profile" icon: IconType.user NavigationStack { initialPage: socialView.profilePage } } NavigationItem { title: "Leaderboard" icon: IconType.flagcheckered NavigationStack { initialPage: socialView.leaderboardPage } } } // service configuration VPlayGameNetwork { id: gameNetwork gameId: 285 secret: "AmazinglySecureGameSecret" // increase leaderboard score by 1 for each app start Component.onCompleted: gameNetwork.reportRelativeScore(1) } // social view setup SocialView { id: socialView gameNetworkItem: gameNetwork multiplayerItem: multiplayer visible: false // we show the view pages on our custom app navigation } }
See here for more information: https://v-play.net/cross-platform-app-development/how-to-add-chat-service-and-cross-platform-leaderboard-with-user-profiles-to-your-ios-or-android-app#add-leaderboard-with-user-profiles
Best,
GTDev