C# Class AssetBundleFramework.AssetBundleManifestLoader

读取AssetBundle依赖关系清单文件(PlatformName.manifest)的单例辅助类
Inheritance: IDisposable
Datei anzeigen Open project: setFalcon/ABManager Class Usage Examples

Public Methods

Method Description
Dispose ( ) : void

释放引用的资源

GetAsstBundleManifest ( ) : AssetBundleManifest

获取具有AssetBundle依赖关系的实例对象

GetInstance ( ) : AssetBundleManifestLoader

AssetBundleManifestLoader单例获取方法

LoadManifestFile ( ) : IEnumerator

加载Manifest清单文件,清单文件在一个特殊的AssetBundle中存储

RetrivalDepend ( string abName ) : string[]

获取abName包依赖的所有AssetBundle名称

Private Methods

Method Description
AssetBundleManifestLoader ( ) : System

构造函数,初始化路径/文件引用等

Method Details

Dispose() public method

释放引用的资源
public Dispose ( ) : void
return void

GetAsstBundleManifest() public method

获取具有AssetBundle依赖关系的实例对象
public GetAsstBundleManifest ( ) : AssetBundleManifest
return AssetBundleManifest

GetInstance() public static method

AssetBundleManifestLoader单例获取方法
public static GetInstance ( ) : AssetBundleManifestLoader
return AssetBundleManifestLoader

LoadManifestFile() public method

加载Manifest清单文件,清单文件在一个特殊的AssetBundle中存储
public LoadManifestFile ( ) : IEnumerator
return IEnumerator

RetrivalDepend() public method

获取abName包依赖的所有AssetBundle名称
public RetrivalDepend ( string abName ) : string[]
abName string 要查询的AssetBundle名称
return string[]