Example #1
0
 internal void ResetEntryMap()
 {
     m_EntryMap.Clear();
     foreach (var e in m_SerializeEntries)
     {
         try
         {
             e.parentGroup = this;
             e.IsSubAsset  = false;
             m_EntryMap.Add(e.guid, e);
         }
         catch (Exception ex)
         {
             Addressables.InternalSafeSerializationLog(e.address);
             Debug.LogException(ex);
         }
     }
 }