class in Unity.IO.Archive
/
Implemented in:UnityEngine.CoreModule
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseProvides methods for managing Unity archive files.
This class offers a low level interface for managing Unity Archive Files.
Once an Archive is mounted its contents can be accessed with AsyncReadManager or ContentLoadInterface.LoadContentFileAsync.
AssetBundles are an example of an Archive file and can be loaded with this API.
However, typically AssetBundles are loading using the AssetBundle class, or via the Addressables package.
Another example of an Archive file is the data.unity3d
file generated when BuildPipeline.BuildPlayer is called with BuildOptions.CompressWithLz4 or BuildOptions.CompressWithLz4HC.
In that case this API is not normally needed, because the contents of the Archive are automatically available in the player.
See Also: ContentBuildInterface.ArchiveAndCompress.
GetMountedArchives | Retrieves all mounted archives. |
MountAsync | Loads all files in an archive to a mount point. |