Let Players Compete || Unity Leaderboards Tutorial

Поделиться
HTML-код
  • Опубликовано: 18 сен 2024

Комментарии • 15

  • @disobedientdolphin
    @disobedientdolphin 4 месяца назад +2

    Nice video!
    I'm currently using Steam Leaderboards for my game which seem to work very similar to Unity Leaderboards, but Unity Leaderboards seem to have the much nicer backend and more options like brackets and rank categories. I think for my next game I'll switch to Unity Leaderboards. Thanks!

    • @freedomcoding
      @freedomcoding  4 месяца назад +2

      Thanks for sharing your experience!

  • @saliharslangames
    @saliharslangames 3 месяца назад

    Great video! You rock, man!

  • @GadREKT
    @GadREKT 4 месяца назад +1

    Great Tutorial thank you! can you please update the github project files there is no leaderboardmanager there :(

  • @DavidZobristGames
    @DavidZobristGames 4 месяца назад

    Great videos bro! Can you also make one on Analytics?

    • @freedomcoding
      @freedomcoding  4 месяца назад +1

      Thanks a lot! I will put it on my list and maybe some time take a look at it.

  • @MasterBronzeElite
    @MasterBronzeElite 2 месяца назад

    For UGS, are we able to see all the registered players in the dashboard like Playfab?

  • @hiksms
    @hiksms 2 месяца назад

    I want to return the rank of player (position) as INT, where can i find the code? Theres nothing on documentation =(
    Also, the leaderboard sometimes only uptades on scene refresh

    • @freedomcoding
      @freedomcoding  2 месяца назад

      Hi, you can get the rank from the LeaderboardEntry you get when calling GetPlayerScoreAsync. LeaderboardEntry leaderboardEntry = await LeaderboardsService.Instance.GetPlayerScoreAsync("");
      int rank = leaderboardEntry.Rank;

  • @agamemnun-ov9xy
    @agamemnun-ov9xy Месяц назад

    will this work on Web?

    • @freedomcoding
      @freedomcoding  Месяц назад

      Hi, I haven't tried. They don't seem to mention it in the official documentation, so I think it should work.

  • @mrpickle808
    @mrpickle808 13 дней назад

    Will this work for iOS and android?

    • @freedomcoding
      @freedomcoding  12 дней назад

      Hi, I think there should be no problem with it.