BENTOTILESSDK DOCS

Leaderboards & High Scores

Submit player high scores and display global rankings.

High Scores & Leaderboards

Submit high scores to global and level-specific BentoTiles leaderboards.


🏆 Submitting Scores

await BentoTiles.leaderboard.submitScore({
  leaderboardId: "main_level_1",
  score: 18450,
  metadata: { character: "ninja", difficulty: "hard" }
});

📊 Fetching Top Scores

const topScores = await BentoTiles.leaderboard.getScores("main_level_1", 10);

topScores.forEach((entry) => {
  console.log(`#${entry.rank} ${entry.username}: ${entry.score}`);
});