Page 1 of 1

DS Save System meta data question

Posted: Wed Dec 09, 2020 6:26 pm
by hellwalker
Hey!
I'm working on a project that uses DS Save System.
I want to do a save/load game menu where the save file metadata is shown like Screenshot, Location, Save Date.

I was wondering is there a built-in way to save/load this data from a save file without actually loading the save. What I mean is getting this metadata so it can be shown in a save menu list.

Example:
Image

If not np. I can save this with like a slotID + playerprefs.

Thanks

Re: DS Save System meta data question

Posted: Wed Dec 09, 2020 7:07 pm
by Tony Li
There isn't a built-in way to save metadata outside of the saved game data. Different games save different information, so it's something that's probably best done custom for each game. If you're saving to local disk files (e.g., using DiskSavedGameDataStorer), I recommend saving the metadata to a local disk file, too. You could save all of the metadata about saved games in a single "catalog" file that includes each saved game's screenshot, date saved, etc.

(This post describes how to include the meta data in the saved game file.)

Re: DS Save System meta data question

Posted: Thu Dec 10, 2020 5:54 am
by hellwalker
Ah, perfect thank you. Didn't know you could retrieve a save the file without loading it in-game, I'll use #2 approach from the post.