/// <summary>
 /// Additively load catalogs from runtime data.  The settings are not used.
 /// </summary>
 /// <param name="catalogPath">The path to the runtime data.</param>
 /// <param name="providerSuffix">This value, if not null or empty, will be appended to all provider ids loaded from this data.</param>
 /// <returns>The operation handle for the request.</returns>
 public static AsyncOperationHandle <IResourceLocator> LoadContentCatalog(string catalogPath, string providerSuffix = null)
 {
     return(m_Addressables.LoadContentCatalog(catalogPath, providerSuffix));
 }