You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
828 B
C#
36 lines
828 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class SerializableDictionary<TKey, TValue> : Dictionary<TKey, TValue>, ISerializationCallbackReceiver
|
|
{
|
|
[SerializeField] private List<TKey> keys = new List<TKey>();
|
|
[SerializeField] private List<TValue> values = new List<TValue>();
|
|
|
|
public void OnBeforeSerialize()
|
|
{
|
|
keys.Clear();
|
|
values.Clear();
|
|
|
|
foreach (var pair in this)
|
|
{
|
|
keys.Add(pair.Key);
|
|
values.Add(pair.Value);
|
|
}
|
|
}
|
|
|
|
public void OnAfterDeserialize()
|
|
{
|
|
Clear();
|
|
|
|
if (keys.Count != values.Count)
|
|
throw new Exception("Key and value count mismatch!");
|
|
|
|
for (int i = 0; i < keys.Count; i++)
|
|
{
|
|
Add(keys[i], values[i]);
|
|
}
|
|
}
|
|
}
|