SerializedDictionnary.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. namespace UnityEngine.Recorder
  4. {
  5. [Serializable]
  6. class SerializedDictionary<TKey, TValue> : ISerializationCallbackReceiver
  7. {
  8. [SerializeField] List<TKey> m_Keys = new List<TKey>();
  9. [SerializeField] List<TValue> m_Values = new List<TValue>();
  10. readonly Dictionary<TKey, TValue> m_Dictionary = new Dictionary<TKey, TValue>();
  11. public Dictionary<TKey, TValue> dictionary
  12. {
  13. get { return m_Dictionary; }
  14. }
  15. public void OnBeforeSerialize()
  16. {
  17. m_Keys.Clear();
  18. m_Values.Clear();
  19. foreach (var keyPair in m_Dictionary)
  20. {
  21. m_Keys.Add(keyPair.Key);
  22. m_Values.Add(keyPair.Value);
  23. }
  24. }
  25. public void OnAfterDeserialize()
  26. {
  27. m_Dictionary.Clear();
  28. for (int i = 0; i < m_Keys.Count; ++i)
  29. m_Dictionary.Add(m_Keys[i], m_Values[i]);
  30. }
  31. }
  32. }