# AssetBundleLoadResult

> The result of an Asset Bundle Load or Recompress Operation.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEngine](/engine/6000.7/script-reference/unityengine.md)
* **Assembly:** UnityEngine.AssetBundleModule

```csharp
public enum AssetBundleLoadResult
```

## Fields

| Value                                                                                                                                                 | Description                                                                                                                      |
| ----------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
| [AlreadyLoaded](/engine/6000.7/script-reference/unityengine/assetbundleloadresult/alreadyloaded.md)                                                   | The Asset Bundle is already loaded.                                                                                              |
| [Cancelled](/engine/6000.7/script-reference/unityengine/assetbundleloadresult/cancelled.md)                                                           | The operation was cancelled.                                                                                                     |
| [FailedCache](/engine/6000.7/script-reference/unityengine/assetbundleloadresult/failedcache.md)                                                       | The Asset Bundle was not successfully cached.                                                                                    |
| [FailedDecompression](/engine/6000.7/script-reference/unityengine/assetbundleloadresult/faileddecompression.md)                                       | Failed to decompress the Asset Bundle.                                                                                           |
| [FailedDeleteRecompressionTarget](/engine/6000.7/script-reference/unityengine/assetbundleloadresult/faileddeleterecompressiontarget.md)               | The target path given for the Recompression operation could not be deleted for swap with recompressed bundle file.               |
| [FailedRead](/engine/6000.7/script-reference/unityengine/assetbundleloadresult/failedread.md)                                                         | Failed to read the Asset Bundle file.                                                                                            |
| [FailedWrite](/engine/6000.7/script-reference/unityengine/assetbundleloadresult/failedwrite.md)                                                       | Failed to write to the file system.                                                                                              |
| [NoSerializedData](/engine/6000.7/script-reference/unityengine/assetbundleloadresult/noserializeddata.md)                                             | The Asset Bundle does not contain any serialized data. It may be empty, or corrupt.                                              |
| [NotCompatible](/engine/6000.7/script-reference/unityengine/assetbundleloadresult/notcompatible.md)                                                   | The AssetBundle is incompatible with this version of Unity.                                                                      |
| [NotMatchingCrc](/engine/6000.7/script-reference/unityengine/assetbundleloadresult/notmatchingcrc.md)                                                 | The decompressed Asset data did not match the precomputed CRC. This may suggest that the AssetBundle did not download correctly. |
| [NotValidAssetBundle](/engine/6000.7/script-reference/unityengine/assetbundleloadresult/notvalidassetbundle.md)                                       | This does not appear to be a valid Asset Bundle.                                                                                 |
| [RecompressionTargetExistsButNotArchive](/engine/6000.7/script-reference/unityengine/assetbundleloadresult/recompressiontargetexistsbutnotarchive.md) | The target path given for the Recompression operation exists but is not an Archive container.                                    |
| [RecompressionTargetIsLoaded](/engine/6000.7/script-reference/unityengine/assetbundleloadresult/recompressiontargetisloaded.md)                       | The target path given for the Recompression operation is an Archive that is currently loaded.                                    |
| [Success](/engine/6000.7/script-reference/unityengine/assetbundleloadresult/success.md)                                                               | The operation completed successfully.                                                                                            |
