Пример #1
0
 public ContentManifestFile GetContentManifestForAsset(ulong guid)
 {
     if (SpeechContentManifest.Exists(guid))
     {
         return(SpeechContentManifest);
     }
     return(MainContentManifest);
 }
Пример #2
0
 public ContentManifestFile GetContentManifestForAsset(ulong guid)
 {
     if (m_textContentManifest != null && m_textContentManifest.Exists(guid))
     {
         return(m_textContentManifest);
     }
     if (m_speechContentManifest != null && m_speechContentManifest.Exists(guid))
     {
         return(m_speechContentManifest);
     }
     return(m_rootContentManifest);
 }