Leaderboards

Leaderboards are a powerful feature that stimulates competitive engagement among players.

To enable SaaS-based leaderboards, you must specify in the configuration file that leaderboards are enabled and define the platforms on which they should be active. No changes are required in the game implementation itself. SaaS-based leaderboards are integrated and loaded automatically.

playgama-bridge-config.json
{
  ...
  "saas": {
     "publicToken": "<YOUR_APP_PUBLIC_TOKEN>",
     "leaderboards": {
       "platforms": ["playgama", "qa_tool"]
     }
  },
  ...
}

To add a leaderboard to the SaaS, contact the Dev Success team. In the future, this action will be available to developers in the dashboard.

In the leaderboards section of the configuration file, only basic setup is required:

playgama-bridge-config.json
{
  ...
  "leaderboards": [
    {
      "id": "top_score"
    }
  ],
  ...
}

Last updated