Leaderboard Manager
A downloadable Asset for Windows, macOS, and Linux
The Leaderboard Manager is designed to be an easy to use and lightweight leaderboard system useful for beginners and experienced devs alike. The asset handles the creating, storing, accessing and displaying of the entries of one or many leaderboards. All leaderboards are created at runtime and can store a name and score, a name and time or a name and anything you want. The data is saved to a local file as JSON for readability.
🟨 Brief feature list
- Easily create & update leaderboards with a name & score.
- Leaderboard editor to view board in the editor.
- Auto save & load.
- Option to save boards with a score or time value out of the box.
- WebGL supported!
- Regularly updated and maintained with ❤️
🟨 Important Links
Website | Docs | Discord | Report Issues | Contact Email: hello@carter.game
🟨 How to Install & Where to start
- Import the package into your project (with no compile errors in your code at the time of importing).
- Wait for the Unity Editor to refresh!
- That is it xD (The asset auto-creates all its needed assets when imported).
- Make your first leaderboard at runtime and you're off......
🟨 Basic API Usage
Create a leaderboard called "MyBoard" LeaderboardManager.CreateLeaderboard("MyBoard");
Get leaderboard data for the board called "MyBoard"
var data = LeaderboardManager.GetLeaderboard("MyBoard");
Add entry to board called "MyBoard" for a player called "John" with a score of 100 LeaderboardManager.AddEntryToBoard("MyBoard", new LeaderboardEntryScore("John", 100));
Remove entry from board called "MyBoard" for a player called "John" of a score of 100
LeaderboardManager.DeleteEntryFromBoard("MyBoard", new LeaderboardEntryScore("John", 100));
Save all leaderboards
LeaderboardManager.Save();
Load all leaderboards
LeaderboardManager.Load();
For more information on usage, please consult the documentation.
Status | Released |
Category | Assets |
Rating | Rated 5.0 out of 5 stars (1 total ratings) |
Author | Carter Games |
Tags | Arcade, asset, leaderboard, tools, Unity, unity-asset |
Download
Click download now to get access to the following files:
Development log
- WebGL build fixes (2.2.2)May 17, 2024
- Demo scene fixes (2.2.1)May 16, 2024
- Time leaderboard fixes (2.2.0)Mar 31, 2024
- Backend update (2.1.0)Mar 14, 2024
- Hotfix (2.0.1)Mar 21, 2022
- 2.0.0 Update!Jan 03, 2022
Leave a comment
Log in with itch.io to leave a comment.