示例#1
0
 /// <summary>
 /// Loads the resource locations specified by the keys.
 /// The method will always return success, with a valid IList of results. If nothing matches keys, IList will be empty
 /// </summary>
 /// <param name="keys">The set of keys to use.</param>
 /// <param name="mode">The mode for merging the results of the found locations.</param>
 /// <param name="type">A type restriction for the lookup.  Only locations of the provided type (or derived type) will be returned.</param>
 /// <returns>The operation handle for the request.</returns>
 public static AsyncOperationHandle <IList <IResourceLocation> > LoadResourceLocationsAsync(IList <object> keys, MergeMode mode, Type type = null)
 {
     return(m_Addressables.LoadResourceLocationsAsync(keys, mode, type));
 }