Setup
Setting up the Cloud Save module is very simple, just drag and drop the prefab available in the folder Assets > Lucky Raccoon Games > Really Simple Steam Integration > Prefabs > Steam
After that, you can configure (optionally) an encryption key, containing 64 characters, being letters and/or numbers:

Lastly, call the method that initializes the file save configuration logic:
[SerializeField]
SteamCloudSave steamCloudSave;
void Start() {
steamCloudSave.Initialize();
}
Attention! The Initialize method must be called only once during the entire game run. Take care of this initialization in the first scene of your game to avoid errors or unexpected behaviors later on
Last updated