Ultimate Save And Load 2.0.0 Help

Cloud Save

Ultimate Save And Load has a built-in feature that converts the save file to/from a string, which is then passed to any supported Cloud Storage Provider. The asset also featured a one-file save behavior which makes it easier to share or exchange save files

Convert to String (Export)

Returns a string containing all the saved values

SaveAndLoad.GetStringFromData();

Save from String (Import)

Saves all the previously exported data to the current save file

SaveAndLoad.SaveDataFromString(string data);

Using Cloud Saves

Uploading

You will need to first convert the data by the Convert to String method, which can then be uploaded to a storage provider

Downloading

First of all you will need to get the previously saved data as a string from the storage provider, after that you can import that data by the Save from String method, this automatically saves the data to the save file.

Last modified: 20 October 2023