Save System
Save Data Architecture
Creating Save Data for Your Plugin
Step 1: Define the Save Data Class
[System.Serializable]
public class FactionSaveData
{
public List<FactionReputationData> reputations = new List<FactionReputationData>();
}
[System.Serializable]
public class FactionReputationData
{
public string factionId;
public int reputation;
}Step 2: Implement Save Data Collection
Step 3: Register with the Save Plugin
Save Providers
Best Practices
Last updated
Was this helpful?
