Prefs Utilities is a group of classes focused on increasing the functionality of the class EditorPrefs and PlayerPrefs in unity. Increasing the types of data available, encrypting and managing them.
The types of data you can save are:
float[], int[], string[],
bool, bool[],
Vector2, Vector2[],
Vector3, Vector3[],
Vector4, Vector4[],
Quaternion, Quaternion[],
Matrix4x4, Matrix4x4[],
Bounds, Bounds[],
Rect, Rect[]
-Uses AES-256 encryption.
-Creates string type keys and converts them to the required data type so as not to generate unnecessary keys
-Easy creation of other script-based data types
-Secure your user data