Class ResourcePackage
Assembly: YooAsset.dll
public class ResourcePackage
Properties
InitializeStatus
初始化状态
public EOperationStatus InitializeStatus { get; }
PackageValid
包裹是否有效
public bool PackageValid { get; }
Fields
PackageName
包裹名
public readonly string PackageName
Methods
InitializeAsync(InitializeParameters)
异步初始化
public InitializationOperation InitializeAsync(InitializeParameters parameters)
Returns
YooAsset.InitializationOperation
Parameters
Type | Name |
---|---|
YooAsset.InitializeParameters | parameters |
DestroyAsync()
异步销毁
public DestroyOperation DestroyAsync()
Returns
RequestPackageVersionAsync(bool, int)
请求最新的资源版本
public RequestPackageVersionOperation RequestPackageVersionAsync(bool appendTimeTicks = true, int timeout = 60)
Returns
YooAsset.RequestPackageVersionOperation
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | appendTimeTicks | 在URL末尾添加时间戳 |
System.Int32 | timeout | 超时时间(默认值:60秒) |
UpdatePackageManifestAsync(string, int)
更新并加载指定版本的资源清单
public UpdatePackageManifestOperation UpdatePackageManifestAsync(string packageVersion, int timeout = 60)
Returns
YooAsset.UpdatePackageManifestOperation
Parameters
Type | Name | Description |
---|---|---|
System.String | packageVersion | 包裹版本 |
System.Int32 | timeout | 超时时间(默认值:60秒) |
PreDownloadContentAsync(string, int)
预下载指定版本的包裹资源
public PreDownloadContentOperation PreDownloadContentAsync(string packageVersion, int timeout = 60)
Returns
YooAsset.PreDownloadContentOperation
Parameters
Type | Name | Description |
---|---|---|
System.String | packageVersion | 包裹版本 |
System.Int32 | timeout | 超时时间(默认值:60秒) |
ClearCacheFilesAsync(EFileClearMode, object)
清理缓存文件
public ClearCacheFilesOperation ClearCacheFilesAsync(EFileClearMode clearMode, object clearParam = null)
Returns
YooAsset.ClearCacheFilesOperation
Parameters
Type | Name | Description |
---|---|---|
YooAsset.EFileClearMode | clearMode | 清理方式 |
System.Object | clearParam | 执行参数 |
ClearCacheFilesAsync(string, object)
清理缓存文件
public ClearCacheFilesOperation ClearCacheFilesAsync(string clearMode, object clearParam = null)
Returns
YooAsset.ClearCacheFilesOperation
Parameters
Type | Name | Description |
---|---|---|
System.String | clearMode | 清理方式 |
System.Object | clearParam | 执行参数 |
GetPackageVersion()
获取当前加载包裹的版本信息
public string GetPackageVersion()
Returns
System.String
GetPackageNote()
获取当前加载包裹的备注信息
public string GetPackageNote()
Returns
System.String
GetPackageDetails()
获取当前加载包裹的详细信息
public PackageDetails GetPackageDetails()
Returns
UnloadAllAssetsAsync()
强制回收所有资源
public UnloadAllAssetsOperation UnloadAllAssetsAsync()
Returns
YooAsset.UnloadAllAssetsOperation
UnloadAllAssetsAsync(UnloadAllAssetsOptions)
强制回收所有资源
public UnloadAllAssetsOperation UnloadAllAssetsAsync(UnloadAllAssetsOptions options)
Returns
YooAsset.UnloadAllAssetsOperation
Parameters
Type | Name | Description |
---|---|---|
YooAsset.UnloadAllAssetsOptions | options | 卸载选项 |
UnloadUnusedAssetsAsync(int)
回收不再使用的资源 说明:卸载引用计数为零的资源
public UnloadUnusedAssetsOperation UnloadUnusedAssetsAsync(int loopCount = 10)
Returns
YooAsset.UnloadUnusedAssetsOperation
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | loopCount | 循环迭代次数 |
TryUnloadUnusedAsset(string)
资源回收 说明:尝试卸载指定的资源
public void TryUnloadUnusedAsset(string location)
Parameters
Type | Name |
---|---|
System.String | location |
TryUnloadUnusedAsset(AssetInfo)
资源回收 说明:尝试卸载指定的资源
public void TryUnloadUnusedAsset(AssetInfo assetInfo)
Parameters
Type | Name |
---|---|
YooAsset.AssetInfo | assetInfo |
IsNeedDownloadFromRemote(string)
是否需要从远端更新下载
public bool IsNeedDownloadFromRemote(string location)
Returns
System.Boolean
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
IsNeedDownloadFromRemote(AssetInfo)
是否需要从远端更新下载
public bool IsNeedDownloadFromRemote(AssetInfo assetInfo)
Returns
System.Boolean
Parameters
Type | Name |
---|---|
YooAsset.AssetInfo | assetInfo |
GetAllAssetInfos()
获取所有的资源信息
public AssetInfo[] GetAllAssetInfos()
Returns
YooAsset.AssetInfo[]
GetAssetInfos(string)
获取资源信息列表
public AssetInfo[] GetAssetInfos(string tag)
Returns
YooAsset.AssetInfo[]
Parameters
Type | Name | Description |
---|---|---|
System.String | tag | 资源标签 |
GetAssetInfos(string[])
获取资源信息列表
public AssetInfo[] GetAssetInfos(string[] tags)
Returns
YooAsset.AssetInfo[]
Parameters
Type | Name | Description |
---|---|---|
System.String[] | tags | 资源标签列表 |
GetAssetInfo(string)
获取资源信息
public AssetInfo GetAssetInfo(string location)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
GetAssetInfo(string, Type)
获取资源信息
public AssetInfo GetAssetInfo(string location, Type type)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.Type | type | 资源类型 |
GetAssetInfoByGUID(string)
获取资源信息
public AssetInfo GetAssetInfoByGUID(string assetGUID)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | assetGUID | 资源GUID |
GetAssetInfoByGUID(string, Type)
获取资源信息
public AssetInfo GetAssetInfoByGUID(string assetGUID, Type type)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | assetGUID | 资源GUID |
System.Type | type | 资源类型 |
CheckLocationValid(string)
检查资源定位地址是否有效
public bool CheckLocationValid(string location)
Returns
System.Boolean
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
LoadRawFileSync(AssetInfo)
同步加载原生文件
public RawFileHandle LoadRawFileSync(AssetInfo assetInfo)
Returns
Parameters
Type | Name | Description |
---|---|---|
YooAsset.AssetInfo | assetInfo | 资源信息 |
LoadRawFileSync(string)
同步加载原生文件
public RawFileHandle LoadRawFileSync(string location)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
LoadRawFileAsync(AssetInfo, uint)
异步加载原生文件
public RawFileHandle LoadRawFileAsync(AssetInfo assetInfo, uint priority = 0)
Returns
Parameters
Type | Name | Description |
---|---|---|
YooAsset.AssetInfo | assetInfo | 资源信息 |
System.UInt32 | priority | 加载的优先级 |
LoadRawFileAsync(string, uint)
异步加载原生文件
public RawFileHandle LoadRawFileAsync(string location, uint priority = 0)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.UInt32 | priority | 加载的优先级 |
LoadSceneSync(string, LoadSceneMode, LocalPhysicsMode)
同步加载场景
public SceneHandle LoadSceneSync(string location, LoadSceneMode sceneMode = LoadSceneMode.Single, LocalPhysicsMode physicsMode = LocalPhysicsMode.None)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 场景的定位地址 |
UnityEngine.SceneManagement.LoadSceneMode | sceneMode | 场景加载模式 |
UnityEngine.SceneManagement.LocalPhysicsMode | physicsMode | 场景物理模式 |
LoadSceneSync(AssetInfo, LoadSceneMode, LocalPhysicsMode)
同步加载场景
public SceneHandle LoadSceneSync(AssetInfo assetInfo, LoadSceneMode sceneMode = LoadSceneMode.Single, LocalPhysicsMode physicsMode = LocalPhysicsMode.None)
Returns
Parameters
Type | Name | Description |
---|---|---|
YooAsset.AssetInfo | assetInfo | 场景的资源信息 |
UnityEngine.SceneManagement.LoadSceneMode | sceneMode | 场景加载模式 |
UnityEngine.SceneManagement.LocalPhysicsMode | physicsMode | 场景物理模式 |
LoadSceneAsync(string, LoadSceneMode, LocalPhysicsMode, bool, uint)
异步加载场景
public SceneHandle LoadSceneAsync(string location, LoadSceneMode sceneMode = LoadSceneMode.Single, LocalPhysicsMode physicsMode = LocalPhysicsMode.None, bool suspendLoad = false, uint priority = 0)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 场景的定位地址 |
UnityEngine.SceneManagement.LoadSceneMode | sceneMode | 场景加载模式 |
UnityEngine.SceneManagement.LocalPhysicsMode | physicsMode | 场景物理模式 |
System.Boolean | suspendLoad | 场景加载到90%自动挂起 |
System.UInt32 | priority | 加载的优先级 |
LoadSceneAsync(AssetInfo, LoadSceneMode, LocalPhysicsMode, bool, uint)
异步加载场景
public SceneHandle LoadSceneAsync(AssetInfo assetInfo, LoadSceneMode sceneMode = LoadSceneMode.Single, LocalPhysicsMode physicsMode = LocalPhysicsMode.None, bool suspendLoad = false, uint priority = 0)
Returns
Parameters
Type | Name | Description |
---|---|---|
YooAsset.AssetInfo | assetInfo | 场景的资源信息 |
UnityEngine.SceneManagement.LoadSceneMode | sceneMode | 场景加载模式 |
UnityEngine.SceneManagement.LocalPhysicsMode | physicsMode | 场景物理模式 |
System.Boolean | suspendLoad | 场景加载到90%自动挂起 |
System.UInt32 | priority | 加载的优先级 |
LoadAssetSync(AssetInfo)
同步加载资源对象
public AssetHandle LoadAssetSync(AssetInfo assetInfo)
Returns
Parameters
Type | Name | Description |
---|---|---|
YooAsset.AssetInfo | assetInfo | 资源信息 |
LoadAssetSync<TObject>(string)
同步加载资源对象
public AssetHandle LoadAssetSync<TObject>(string location) where TObject : Object
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
Type Parameters
Name | Description |
---|---|
TObject | 资源类型 |
LoadAssetSync(string, Type)
同步加载资源对象
public AssetHandle LoadAssetSync(string location, Type type)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.Type | type | 资源类型 |
LoadAssetSync(string)
同步加载资源对象
public AssetHandle LoadAssetSync(string location)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
LoadAssetAsync(AssetInfo, uint)
异步加载资源对象
public AssetHandle LoadAssetAsync(AssetInfo assetInfo, uint priority = 0)
Returns
Parameters
Type | Name | Description |
---|---|---|
YooAsset.AssetInfo | assetInfo | 资源信息 |
System.UInt32 | priority | 加载的优先级 |
LoadAssetAsync<TObject>(string, uint)
异步加载资源对象
public AssetHandle LoadAssetAsync<TObject>(string location, uint priority = 0) where TObject : Object
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.UInt32 | priority | 加载的优先级 |
Type Parameters
Name | Description |
---|---|
TObject | 资源类型 |
LoadAssetAsync(string, Type, uint)
异步加载资源对象
public AssetHandle LoadAssetAsync(string location, Type type, uint priority = 0)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.Type | type | 资源类型 |
System.UInt32 | priority | 加载的优先级 |
LoadAssetAsync(string, uint)
异步加载资源对象
public AssetHandle LoadAssetAsync(string location, uint priority = 0)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.UInt32 | priority | 加载的优先级 |
LoadSubAssetsSync(AssetInfo)
同步加载子资源对象
public SubAssetsHandle LoadSubAssetsSync(AssetInfo assetInfo)
Returns
Parameters
Type | Name | Description |
---|---|---|
YooAsset.AssetInfo | assetInfo | 资源信息 |
LoadSubAssetsSync<TObject>(string)
同步加载子资源对象
public SubAssetsHandle LoadSubAssetsSync<TObject>(string location) where TObject : Object
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
Type Parameters
Name | Description |
---|---|
TObject | 资源类型 |
LoadSubAssetsSync(string, Type)
同步加载子资源对象
public SubAssetsHandle LoadSubAssetsSync(string location, Type type)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.Type | type | 子对象类型 |
LoadSubAssetsSync(string)
同步加载子资源对象
public SubAssetsHandle LoadSubAssetsSync(string location)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
LoadSubAssetsAsync(AssetInfo, uint)
异步加载子资源对象
public SubAssetsHandle LoadSubAssetsAsync(AssetInfo assetInfo, uint priority = 0)
Returns
Parameters
Type | Name | Description |
---|---|---|
YooAsset.AssetInfo | assetInfo | 资源信息 |
System.UInt32 | priority | 加载的优先级 |
LoadSubAssetsAsync<TObject>(string, uint)
异步加载子资源对象
public SubAssetsHandle LoadSubAssetsAsync<TObject>(string location, uint priority = 0) where TObject : Object
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.UInt32 | priority | 加载的优先级 |
Type Parameters
Name | Description |
---|---|
TObject | 资源类型 |
LoadSubAssetsAsync(string, Type, uint)
异步加载子资源对象
public SubAssetsHandle LoadSubAssetsAsync(string location, Type type, uint priority = 0)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.Type | type | 子对象类型 |
System.UInt32 | priority | 加载的优先级 |
LoadSubAssetsAsync(string, uint)
异步加载子资源对象
public SubAssetsHandle LoadSubAssetsAsync(string location, uint priority = 0)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.UInt32 | priority | 加载的优先级 |
LoadAllAssetsSync(AssetInfo)
同步加载资源包内所有资源对象
public AllAssetsHandle LoadAllAssetsSync(AssetInfo assetInfo)
Returns
Parameters
Type | Name | Description |
---|---|---|
YooAsset.AssetInfo | assetInfo | 资源信息 |
LoadAllAssetsSync<TObject>(string)
同步加载资源包内所有资源对象
public AllAssetsHandle LoadAllAssetsSync<TObject>(string location) where TObject : Object
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
Type Parameters
Name | Description |
---|---|
TObject | 资源类型 |
LoadAllAssetsSync(string, Type)
同步加载资源包内所有资源对象
public AllAssetsHandle LoadAllAssetsSync(string location, Type type)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.Type | type | 子对象类型 |
LoadAllAssetsSync(string)
同步加载资源包内所有资源对象
public AllAssetsHandle LoadAllAssetsSync(string location)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
LoadAllAssetsAsync(AssetInfo, uint)
异步加载资源包内所有资源对象
public AllAssetsHandle LoadAllAssetsAsync(AssetInfo assetInfo, uint priority = 0)
Returns
Parameters
Type | Name | Description |
---|---|---|
YooAsset.AssetInfo | assetInfo | 资源信息 |
System.UInt32 | priority | 加载的优先级 |
LoadAllAssetsAsync<TObject>(string, uint)
异步加载资源包内所有资源对象
public AllAssetsHandle LoadAllAssetsAsync<TObject>(string location, uint priority = 0) where TObject : Object
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.UInt32 | priority | 加载的优先级 |
Type Parameters
Name | Description |
---|---|
TObject | 资源类型 |
LoadAllAssetsAsync(string, Type, uint)
异步加载资源包内所有资源对象
public AllAssetsHandle LoadAllAssetsAsync(string location, Type type, uint priority = 0)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.Type | type | 子对象类型 |
System.UInt32 | priority | 加载的优先级 |
LoadAllAssetsAsync(string, uint)
异步加载资源包内所有资源对象
public AllAssetsHandle LoadAllAssetsAsync(string location, uint priority = 0)
Returns
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.UInt32 | priority | 加载的优先级 |
CreateResourceDownloader(int, int, int)
创建资源下载器,用于下载当前资源版本所有的资源包文件
public ResourceDownloaderOperation CreateResourceDownloader(int downloadingMaxNumber, int failedTryAgain, int timeout = 60)
Returns
YooAsset.ResourceDownloaderOperation
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | downloadingMaxNumber | 同时下载的最大文件数 |
System.Int32 | failedTryAgain | 下载失败的重试次数 |
System.Int32 | timeout | 超时时间 |
CreateResourceDownloader(string, int, int, int)
创建资源下载器,用于下载指定的资源标签关联的资源包文件
public ResourceDownloaderOperation CreateResourceDownloader(string tag, int downloadingMaxNumber, int failedTryAgain, int timeout = 60)
Returns
YooAsset.ResourceDownloaderOperation
Parameters
Type | Name | Description |
---|---|---|
System.String | tag | 资源标签 |
System.Int32 | downloadingMaxNumber | 同时下载的最大文件数 |
System.Int32 | failedTryAgain | 下载失败的重试次数 |
System.Int32 | timeout | 超时时间 |
CreateResourceDownloader(string[], int, int, int)
创建资源下载器,用于下载指定的资源标签列表关联的资源包文件
public ResourceDownloaderOperation CreateResourceDownloader(string[] tags, int downloadingMaxNumber, int failedTryAgain, int timeout = 60)
Returns
YooAsset.ResourceDownloaderOperation
Parameters
Type | Name | Description |
---|---|---|
System.String[] | tags | 资源标签列表 |
System.Int32 | downloadingMaxNumber | 同时下载的最大文件数 |
System.Int32 | failedTryAgain | 下载失败的重试次数 |
System.Int32 | timeout | 超时时间 |
CreateBundleDownloader(string, bool, int, int, int)
创建资源下载器,用于下载指定的资源依赖的资源包文件
public ResourceDownloaderOperation CreateBundleDownloader(string location, bool recursiveDownload, int downloadingMaxNumber, int failedTryAgain, int timeout = 60)
Returns
YooAsset.ResourceDownloaderOperation
Parameters
Type | Name | Description |
---|---|---|
System.String | location | 资源的定位地址 |
System.Boolean | recursiveDownload | 下载资源对象所属资源包内所有资源对象依赖的资源包 |
System.Int32 | downloadingMaxNumber | 同时下载的最大文件数 |
System.Int32 | failedTryAgain | 下载失败的重试次数 |
System.Int32 | timeout | 超时时间 |
CreateBundleDownloader(string, int, int, int)
public ResourceDownloaderOperation CreateBundleDownloader(string location, int downloadingMaxNumber, int failedTryAgain, int timeout = 60)
Returns
YooAsset.ResourceDownloaderOperation
Parameters
Type | Name |
---|---|
System.String | location |
System.Int32 | downloadingMaxNumber |
System.Int32 | failedTryAgain |
System.Int32 | timeout |
CreateBundleDownloader(string[], bool, int, int, int)
创建资源下载器,用于下载指定的资源列表依赖的资源包文件
public ResourceDownloaderOperation CreateBundleDownloader(string[] locations, bool recursiveDownload, int downloadingMaxNumber, int failedTryAgain, int timeout = 60)
Returns
YooAsset.ResourceDownloaderOperation
Parameters
Type | Name | Description |
---|---|---|
System.String[] | locations | 资源的定位地址列表 |
System.Boolean | recursiveDownload | 下载资源对象所属资源包内所有资源对象依赖的资源包 |
System.Int32 | downloadingMaxNumber | 同时下载的最大文件数 |
System.Int32 | failedTryAgain | 下载失败的重试次数 |
System.Int32 | timeout | 超时时间 |
CreateBundleDownloader(string[], int, int, int)
public ResourceDownloaderOperation CreateBundleDownloader(string[] locations, int downloadingMaxNumber, int failedTryAgain, int timeout = 60)
Returns
YooAsset.ResourceDownloaderOperation
Parameters
Type | Name |
---|---|
System.String[] | locations |
System.Int32 | downloadingMaxNumber |
System.Int32 | failedTryAgain |
System.Int32 | timeout |
CreateBundleDownloader(AssetInfo, bool, int, int, int)
创建资源下载器,用于下载指定的资源依赖的资源包文件
public ResourceDownloaderOperation CreateBundleDownloader(AssetInfo assetInfo, bool recursiveDownload, int downloadingMaxNumber, int failedTryAgain, int timeout = 60)
Returns
YooAsset.ResourceDownloaderOperation
Parameters
Type | Name | Description |
---|---|---|
YooAsset.AssetInfo | assetInfo | 资源信息 |
System.Boolean | recursiveDownload | 下载资源对象所属资源包内所有资源对象依赖的资源包 |
System.Int32 | downloadingMaxNumber | 同时下载的最大文件数 |
System.Int32 | failedTryAgain | 下载失败的重试次数 |
System.Int32 | timeout | 超时时间 |
CreateBundleDownloader(AssetInfo, int, int, int)
public ResourceDownloaderOperation CreateBundleDownloader(AssetInfo assetInfo, int downloadingMaxNumber, int failedTryAgain, int timeout = 60)
Returns
YooAsset.ResourceDownloaderOperation
Parameters
Type | Name |
---|---|
YooAsset.AssetInfo | assetInfo |
System.Int32 | downloadingMaxNumber |
System.Int32 | failedTryAgain |
System.Int32 | timeout |
CreateBundleDownloader(AssetInfo[], bool, int, int, int)
创建资源下载器,用于下载指定的资源列表依赖的资源包文件
public ResourceDownloaderOperation CreateBundleDownloader(AssetInfo[] assetInfos, bool recursiveDownload, int downloadingMaxNumber, int failedTryAgain, int timeout = 60)
Returns
YooAsset.ResourceDownloaderOperation
Parameters
Type | Name | Description |
---|---|---|
YooAsset.AssetInfo[] | assetInfos | 资源信息列表 |
System.Boolean | recursiveDownload | 下载资源对象所属资源包内所有资源对象依赖的资源包 |
System.Int32 | downloadingMaxNumber | 同时下载的最大文件数 |
System.Int32 | failedTryAgain | 下载失败的重试次数 |
System.Int32 | timeout | 超时时间 |
CreateBundleDownloader(AssetInfo[], int, int, int)
public ResourceDownloaderOperation CreateBundleDownloader(AssetInfo[] assetInfos, int downloadingMaxNumber, int failedTryAgain, int timeout = 60)
Returns
YooAsset.ResourceDownloaderOperation
Parameters
Type | Name |
---|---|
YooAsset.AssetInfo[] | assetInfos |
System.Int32 | downloadingMaxNumber |
System.Int32 | failedTryAgain |
System.Int32 | timeout |
CreateResourceUnpacker(int, int)
创建内置资源解压器,用于解压当前资源版本所有的资源包文件
public ResourceUnpackerOperation CreateResourceUnpacker(int unpackingMaxNumber, int failedTryAgain)
Returns
YooAsset.ResourceUnpackerOperation
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | unpackingMaxNumber | 同时解压的最大文件数 |
System.Int32 | failedTryAgain | 解压失败的重试次数 |
CreateResourceUnpacker(string, int, int)
创建内置资源解压器,用于解压指定的资源标签关联的资源包文件
public ResourceUnpackerOperation CreateResourceUnpacker(string tag, int unpackingMaxNumber, int failedTryAgain)
Returns
YooAsset.ResourceUnpackerOperation
Parameters
Type | Name | Description |
---|---|---|
System.String | tag | 资源标签 |
System.Int32 | unpackingMaxNumber | 同时解压的最大文件数 |
System.Int32 | failedTryAgain | 解压失败的重试次数 |
CreateResourceUnpacker(string[], int, int)
创建内置资源解压器,用于解压指定的资源标签列表关联的资源包文件
public ResourceUnpackerOperation CreateResourceUnpacker(string[] tags, int unpackingMaxNumber, int failedTryAgain)
Returns
YooAsset.ResourceUnpackerOperation
Parameters
Type | Name | Description |
---|---|---|
System.String[] | tags | 资源标签列表 |
System.Int32 | unpackingMaxNumber | 同时解压的最大文件数 |
System.Int32 | failedTryAgain | 解压失败的重试次数 |
CreateResourceImporter(string[], int, int)
创建资源导入器 注意:资源文件名称必须和资源服务器部署的文件名称一致!
public ResourceImporterOperation CreateResourceImporter(string[] filePaths, int importerMaxNumber, int failedTryAgain)
Returns
YooAsset.ResourceImporterOperation
Parameters
Type | Name | Description |
---|---|---|
System.String[] | filePaths | 资源路径列表 |
System.Int32 | importerMaxNumber | 同时导入的最大文件数 |
System.Int32 | failedTryAgain | 导入失败的重试次数 |