Steam cloud save
Steam cloud save
Do the save files stored work with steam cloud? How?
Re: Steam cloud save
Yes, you can save to Steam Cloud with some scripting.
The save system is modular. It consists of these modules:
The save system is modular. It consists of these modules:
- SaveSystem component: coordinates the other modules.
- Saver components: record & apply save data (e.g., GameObject positions, active/inactive states, DS variables, etc.).
- Data Serializer: serializes the data from all saver components into a saveable format.
- Saved Game Data Storer: Stores and retrieves data from a permanent storage source such as PlayerPrefs, disk, etc.
Re: Steam cloud save
At what location are saved files being stored for "Disk Saved Game Data Storage"?
- Attachments
-
- locations.png (21.01 KiB) Viewed 1000 times
Re: Steam cloud save
The usual: Application.persistentDataPath
Individual saved game files are in save_slot#.dat and a catalog file enumerating all of the saved game files in in saveinfo.dat.
Individual saved game files are in save_slot#.dat and a catalog file enumerating all of the saved game files in in saveinfo.dat.