EVERYTHING you need to know to SAVE and LOAD your game in Unity

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 พ.ย. 2024
  • เกม

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

  • @capilover1023
    @capilover1023 หลายเดือนก่อน +7

    The consistency with which you make new content is enviable. Thanks for all the hard work you put into your videos - they've helped me grow as a developer and move from crappy games held together by duct tape and prayer to reliable scalable systems. I really like your code style and your neatness in general. It's rare to find such a thing on TH-cam. It's obvious that you take pride in your craft. That's something to be respected. Good luck to you and your wife with your game!

  • @Putanothersockinit
    @Putanothersockinit 8 วันที่ผ่านมา

    I am new to programming and slow with c# so I cant keep up with your speed yet, but many of your videos are topics that I am very interested in learning, and I like how you do programming, so thank you for putting these videos up! I subbed! I loved your video on loading scenes in the background! thank you thank you!

  • @midniteoilsoftware
    @midniteoilsoftware หลายเดือนก่อน +3

    Very nice Brandon. I'd like to see a follow-up video where you cover using Unity's Cloud Save to save game data in the cloud.

  • @HexedDev
    @HexedDev 27 วันที่ผ่านมา

    Thank you very much for this tutorial. It helped me a ton with an issue I was trying to fix for 3 days !

  • @rhushigulave3044
    @rhushigulave3044 หลายเดือนก่อน +2

    Best video , i was looking or new save and load system for long time thanks 🔥 🔥

  • @OrangeCat-vj4qx
    @OrangeCat-vj4qx หลายเดือนก่อน

    thankyou for this! it helped a lot i have a basic functioning save system i can add things to now. much better than wasting days and $100 on an asset

  • @harneetsingh9420
    @harneetsingh9420 หลายเดือนก่อน

    Many thanks for this video, liked even before watching. I am at work so will watch later when I get home thanks again :)

  • @vaibhavydarshan
    @vaibhavydarshan 2 วันที่ผ่านมา

    i loved your tutorial, really helped me out!

  • @HopperGameDevelopment-x4r
    @HopperGameDevelopment-x4r หลายเดือนก่อน +1

    Super, super useful. Thank you.

  • @alissabrave424
    @alissabrave424 25 วันที่ผ่านมา +2

    Is this work for webgl?

  • @Rezm0ni
    @Rezm0ni หลายเดือนก่อน

    Nice tutorial! Would be really cool if you could zoom a bit into the code itself. It’s really tiny as of right now when watching it on my iPad lol

  • @fleity
    @fleity หลายเดือนก่อน +1

    Is there a way to serialize references to a certain scriptable object? Probably not, right? because the scriptable object instance gets newly instanciated and any Id that would point to it would be gone? Only way to do it I can think of is register a scriptable object instance with some manager class and on load set the reference to that new instance, similar as with the Enemy GameObjects?
    That is also the reason why you serialize the sceneID as string? (This looks pretty easy to break 😕)

    • @tymofeev.e
      @tymofeev.e หลายเดือนก่อน

      I also was thinking about that. And it would be much easier to use interfaces in save/load class.

  • @BarcelonaMove
    @BarcelonaMove 28 วันที่ผ่านมา

    Is there a chance to have the source code for the example?

  • @dm1tryrin
    @dm1tryrin หลายเดือนก่อน

    Thank you Brandon! Very helpful video! Can you please tell me if there are plans to port Samurado for macOS ?

  • @Mr-sy7lb
    @Mr-sy7lb 11 วันที่ผ่านมา

    GameManager.Instance.Player.Save what is this part for i didnt get it

  • @AgniKai-ht2bv
    @AgniKai-ht2bv หลายเดือนก่อน

    is this applicable for android?

    • @dm1tryrin
      @dm1tryrin หลายเดือนก่อน +1

      Yes. See the reference to PersistencePath - and otherwise everything else applies.