Save Game Free is a free and simple but powerful solution for saving and loading game data in Unity Game Engine.
The below features made Save Game Free excellent:
- Cross Platform (Windows, Linux, Mac OS X, Android, iOS, tvOS, SamsungTV, WebGL, ...)
- Auto Save
- Web Support
- Encryption
- Easy to Use
- Simple but Powerful yet
🚀 Download the latest version from the Releases section
You can also add it directly from GitHub on Unity 2019.4+. Note that you won't be able to receive updates through Package Manager this way, you'll have to update manually.
- open Package Manager
- click +
- select Add from Git URL
- paste https://github.com/MidraLab/SaveGameFree.git?path=/Assets/BayatGames/SaveGameFree/Scripts
- click Add
Here is a simple usage of Save Game Free:
SaveGame.Save<int> ( "score", score );
and the full is:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using BayatGames.SaveGameFree;
public class SimpleUsage : MonoBehaviour {
public int score;
void OnApplicationQuit () {
SaveGame.Save<int> ( "score", score );
}
}
MIT @ Bayat Games
Made with ❤️ by Bayat Games