Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. We’re making changes to the Unity Runtime Fee pricing policy that we announced on September 12th. Access our latest thread for more information!
    Dismiss Notice
  3. Dismiss Notice

Question I'd like to be able to register attributes other than score in a leaderboard

Discussion in 'Leaderboards' started by Rinusch, Apr 14, 2023.

  1. Rinusch

    Rinusch

    Joined:
    Mar 28, 2022
    Posts:
    8
    Hi there,

    I'm very happy with this new functionality that's offered!
    However, a wondering: I'd like to be able to list a highscore table not only containing scores but also the level number the player reached before dying.
    I can't see or think of any other way of doing this. Cloud save for instance only allows me to store/retrieve data for the given specific player.

    Anyone?

    Regards!
     
  2. MidnightGameDeveloper

    MidnightGameDeveloper

    Joined:
    Apr 26, 2014
    Posts:
    114
    Hi,
    I guess you are looking for the same meta data feature that got requested in a different thread of this forum.
     
  3. Rinusch

    Rinusch

    Joined:
    Mar 28, 2022
    Posts:
    8
    You are correct, thanks! Didn't notice that post, apologies.
     
  4. Shack_Man

    Shack_Man

    Joined:
    Jun 7, 2017
    Posts:
    364
    Would be very nice indeed! For now as a workaround you can just use the 'free bits' of the double assuming your main score doesn't go as high as a double can go. Like if the scores in your game go from 1-100, just multiply them by 1000 and add extra values like 'seconds needed' before submitting them and then untangle it after retrieving.

    Just a messy workaround until this feature exists.
     
    Rinusch and damelin like this.
  5. Rinusch

    Rinusch

    Joined:
    Mar 28, 2022
    Posts:
    8
    Smart! :)
    Thanks for the tip.