Creating a High Score Easily - Unity Tutorial 2021 (Highscore Part 1)

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ธ.ค. 2024

ความคิดเห็น • 8

  • @Samuel_3000
    @Samuel_3000 2 ปีที่แล้ว

    This is a very informative video, and also your channel overall seems like a wealth of knowledge. Thanks for sharing 😎

  • @emin712
    @emin712 3 ปีที่แล้ว +1

    perfect channel and you are awesome ! thank you for video

    • @VelvaryGames
      @VelvaryGames  3 ปีที่แล้ว

      Haha, thank you :) Nice to hear

  • @kyriegarcia9250
    @kyriegarcia9250 3 ปีที่แล้ว

    Thanks a lot for this video this really help me a lot. I have a favor can you do a video for ranking list like leader board scores?

    • @VelvaryGames
      @VelvaryGames  3 ปีที่แล้ว

      I have another tutorial called "Creating and Saving a High Score List", that might be what you are looking for

  • @archershoots
    @archershoots ปีที่แล้ว

    Hey. I know I'm really really late to this but if anyone see's this comment and has an answer thank you.
    The highscore works perfectly in the editor but when I go to build it it doesn't show up with the text or anything. If anyone has an answer could please reply to this comment.

  • @Xfurce
    @Xfurce 3 ปีที่แล้ว

    Can we import our high score to a different screen ? like we see highscore in the game than we open a different scene like a scoreboard to import there?

    • @VelvaryGames
      @VelvaryGames  3 ปีที่แล้ว

      Yeah sure, the most basic approach would be to have all the needed scripts in the hierarchy of your other scene as well. Since you save it to the file anyway, you could just simply read the file again on your other scene.
      You could also keep the data in memory by using DontDestroyOnLoad method for the script which holds your high score values and use the same objects over several scenes, but that is a bit more complex, so you may want to try the first approach.