Supported Types
// Custom type example
[System.Serializable]
public struct PlayerStats
{
public int strength;
public int agility;
public string className;
}
PlayerStats stats = new PlayerStats { strength = 10, agility = 15 };
SaveManager.Save("stats", stats, PersistenceScope.Global);
SaveManager.SaveAll();Last updated