Installation Guide
To ensure proper licensing, support, and access to automatic updates, Save System Lite must be acquired officially via the Unity Asset Store. Do not import raw files from unauthorized third-party git registries.
🛠️ Step 1: Add to Your Assets
- Open the Unity Asset Store in your web browser.
- Search for Save System Lite - DecNet Games (or click your purchase link).
- Click Add to My Assets.
📥 Step 2: Download & Import in Unity
- In the Unity Editor, open the Package Manager (
Window > Package Manager). - Change the package filter dropdown in the top-left to My Assets.
- Locate Save System Lite in your list of assets.
- Click Download in the bottom-right corner.
- Once downloaded, click Import.
- In the Import Unity Package window, keep all files checked and click Import to merge the folder into your
Assets/SaveSystemLitedirectory.
🏗️ Step 3: Welcome & Verification
Once the import completes, Save System Lite will automatically compile and run a startup script to verify everything is integrated:
- In Unity, go to the top menu and select
Tools > Save System Lite > Welcome & Setup. - A beautiful, dark-blue welcome panel will appear, greeting you.
- Click the Open Lite Control Panel button to launch your management dashboard.
- Click Generate Lite Interactive Demo Scene to instantly create a playable testing ground. Press play to test and verify the compilation.
📦 Assembly Definitions (ASMDEF)
Save System Lite ships with built-in assembly definitions to accelerate compilation and decouple editor-specific code from runtime code:
SaveSystemLite.asmdefcontains the runtime save code.SaveSystemLite.Editor.asmdefcontains the inspector, Welcome Windows, and demo generator classes.
If your game scripts use a custom assembly definition, make sure to add a reference to SaveSystemLite in your .asmdef inspector to enable compilation!
Warning: Do not modify files in the
Assets/SaveSystemLite/Editorfolder with custom runtime scripts. Keeping them separated prevents compiler crashes during production standalone game builds.