Upgrade from v1.x.x
v2 of the plugin is not compatible with older v1 versions.
The following steps need to be made to upgrade the plugin:
Completely delete the old folders from GleyPlugins folder: About, AllPlatformsSave & Common
Folders to delete
Replace the old: SaveManager.Instance
With the new API: Gley.AllPlatformsSave.API
Example
//old
SaveManager.Instance.Load<GameValues>(fullPath, DataWasLoaded, encrypt);
//new
Gley.AllPlatformsSave.API.Load<GameValues>(fullPath, DataWasLoaded, encrypt);
Last modified 1mo ago