A downloadable asset

Download NowName your own price

Lix Save System

A simple, powerful, and easy-to-use save system for Unity!
Quickly integrate persistent data saving into your projects using GameData and SaveSystem.


๐Ÿ’พ Features

  • Save and load int, float, string, bool, Vector2, Vector3
  • Supports Lists like List<string>, List<float>, etc.
  • Encrypted or unencrypted saving (simple XOR encryption)
  • JSON-based serialization for human-readable files
  • Fully customizable file name and save path
  • Built for Unity 6000+

Requirements

  • Unity Engine 6 or higher  (tested on 6000.0.61f1+)
  • Basic understanding of C# and Unity components

๐Ÿ“œ License

Info about license: 

 https://www.sillylix.com/assetsInfo/SaveSystem.html#license


๐Ÿ“– Quick Example

// Example usage:
// diclear GameData
private GameData gameData;
private void Start() 
{     
    // Initialize game data (aka make a new instance of GameData)     
    gameData = new GameData();
}
// save data
SaveSystem.LixSave(ref gameData, "PlayerScore", 100);
// load data
int score = SaveSystem.LixLoad<int>(gameData, "PlayerScore");

Example Script

Try Lix_Example_CODE.cs for a working in-editor demo (It also has lots of comments to tell you what each code is doing! Highly recommend reading thru it if you are going to use this.).
Press M to modify data, S to save, L to load, and P to print player data in the console.


๐ŸŒ More Info

For full documentation, visit:
https://www.sillylix.com/assetsInfo/SaveSystem.html


The full documentation will have all the info on how the code works and how you can change it to make it perfectly work for you.

If you want me to add some features to this comment it down and I will try to add it.

Published 1 day ago
StatusReleased
CategoryAssets
AuthorSillyLix
TagsAsset Pack, data, free, json, save-data, save-system, system, Unity
Average sessionA few seconds
LanguagesEnglish

Download

Download NowName your own price

Click download now to get access to the following files:

SaveSystem.unitypackage 7.3 kB
LICENSE.txt 1.5 kB

Development log

Comments

Log in with itch.io to leave a comment.

If you want new type's added or some other features comment it here!

If you find bugs or you know a better way to do somethings please tell me about it!