Version: 2023.1
言語: 日本語

ArchiveFileInterface

class in Unity.IO.Archive

マニュアルに切り替える

説明

Provides 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.

Static 関数

GetMountedArchivesRetrieves all mounted archives.
MountAsyncLoads all files in an archive to a mount point.