Version: 2023.1
언어: 한국어
public AssetBundleRequest LoadAssetAsync (string name);
public AssetBundleRequest LoadAssetAsync (string name);
public AssetBundleRequest LoadAssetAsync (string name, Type type);

파라미터

name Name of the Asset. For the most precise matching this should be the relative path of the Asset that was built into the AssetBundle, including the file extension. The relative path and file extension are optional, and Assets can be found and loaded based on the filename alone. However this opens the potential for unexpected results if the filename is not unique within the AssetBundle. At build time it is also possible to specify a name for the Asset using AssetBundleBuild.addressableNames. In that case that specified name will be expected to load the Asset instead of the Asset path.
type The provided type will be checked against the Asset's main object, and if that is not compatible it will be matched against visible objects within the Asset. Not all nested objects are visible, for example this will not work to directly retrieve a Transform, MonoBehaviour or other Component. In cases where there are multiple matches for the name argument, the requested type can determine which Asset to load.

설명

Asynchronously loads an Asset from the bundle.

The LoadAssetAsync<T> signature is recommended, so that the requested type is explicit and no type casting is necessary.

Note: For Scenes inside AssetBundles call SceneManager.LoadSceneAsync instead of this method.

See Also: AssetBundleRequest.