ESave Settings
Going over ESave's settings window.
Last updated
Going over ESave's settings window.
Last updated
You can open ESave's settings from Window > ESave > Settings
.
Database Name
The name of the database file that stores all saves.
Debug Log Mode
Controls the debug messages logged in the console.
Log Runtime Path
If the path to the runtime database should be logged. If enabled, it will always be logged in the console no matter the debug log mode.
Encryption Method
The encryption method.
AES Key
Required by the AES encryption algorithm. This is the primary secret used to encrypt and decrypt data. If this is regenerated, previously saved encrypted data will not be loadable.
Multithread Mode
Controls the kind of operations that are handled in the background.
None
No ESave logs are displayed in the console. This does not prevent error messages.
Normal
Displays all ESave console logs.
None
All saved data will be saved as a JSON object—the encryption process does not occur.
AES
Data will go through an encryption and decryption with the utilization of the AES algorithm.
Disabled
No multithreading is used—everything is handled on the main thread.
Major
Only handle major tasks in a separate thread. Major tasks are essentially saving and loading (i.e. ESave.Save, ESave.Load). Minor tasks are handled on the main thread.
Major and Minor
Handle both major and minor tasks in a separate thread. Minor tasks are small things like saveState.AddData or saveState.GetData.