V2.1 Update!


Additions:

  • Added a new "Ping" function which you can use to check if the player can connect to the server:
Ping(Action<bool> callback)
  • Here is an example of how you can call it in a script inside of Unity:
Dan.Main.LeaderboardCreator.Ping(isServerReachable => {
    if (isServerReachable)
    {
        //TODO: load leaderboard
    }
    else
    {
        //TODO: display error
    }
});

See what's new in update v2.0

Files

Leaderboard Creator V2.1 (Unity Package) 581 kB
Sep 07, 2022

Get Leaderboard Creator

Download NowName your own price

Comments

Log in with itch.io to leave a comment.

(+1)

Nice! Much appreciated, thanks!