For using this plugin methods you need to import the required namespace. Please include the below statement at namespace include list.
using VoxelBusters.Serialization;
We provide a generic method to load(De-Serialize) any kind of data. For deserializing data you need to specify a key with which data was serialized earlier.
Examples
Load Int
int myIntValue =SerializationManager.Deserialize<int>("myInt");
int myIntValue =SerializationManager.DeserializeInt32("myInt");