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:

An encryption key can be configured in the field above. This step is optional

Lastly, call the method that initializes the file save configuration logic:

[SerializeField]
SteamCloudSave steamCloudSave;

void Start() {       
    steamCloudSave.Initialize();
}

Last updated