Update document

pull/11/head
hevinci 2022-05-12 12:37:48 +08:00
parent 4cad587609
commit 2da81212b4
3 changed files with 25 additions and 2 deletions

View File

@ -14,7 +14,15 @@
- **Build Mode**
构建模式:强制构建模式,增量构建模式,演练构建模式,模拟构建模式。
构建模式
(1) 强制构建模式:会删除指定构建平台下的所有构建记录,重新构建所有资源包。
(2) 增量构建模式:以上一次构建结果为基础,对于发生变化的资源进行增量构建。
(3) 演练构建模式在不生成AssetBundle文件的前提下进行演练构建并快速生成构建报告和补丁清单。
(4) 模拟构建模式在编辑器下配合EditorSimulateMode运行模式来模拟真实运行的环境。
- **Encryption**

View File

@ -77,7 +77,7 @@ private IEnumerator InitializeYooAsset()
````c#
public class BundleDecryption : IDecryptionServices
{
public ulong GetFileOffset(BundleInfo bundleInfo)
public ulong GetFileOffset()
{
return 32;
}

View File

@ -142,6 +142,21 @@ IEnumerator Start()
}
````
**获取资源信息列表**
通过资源标签来获取资源信息列表。
````c#
private GetAssetInfosByTag(string tag)
{
AssetInfo[] assetInfos = YooAssets.GetAssetInfos(tag);
foreach (var assetInfo in assetInfos)
{
Debug.Log(assetInfo.AssetPath);
}
}
````
**FairyGUI支持解决方案**
注意在FairyGUI的面板销毁的时候将资源句柄列表释放否则会造成资源泄漏。