diff --git a/Docs/AssetBuilder.md b/Docs/AssetBuilder.md index d40a140..11119b0 100644 --- a/Docs/AssetBuilder.md +++ b/Docs/AssetBuilder.md @@ -14,7 +14,15 @@ - **Build Mode** - 构建模式:强制构建模式,增量构建模式,演练构建模式,模拟构建模式。 + 构建模式 + + (1) 强制构建模式:会删除指定构建平台下的所有构建记录,重新构建所有资源包。 + + (2) 增量构建模式:以上一次构建结果为基础,对于发生变化的资源进行增量构建。 + + (3) 演练构建模式:在不生成AssetBundle文件的前提下,进行演练构建并快速生成构建报告和补丁清单。 + + (4) 模拟构建模式:在编辑器下配合EditorSimulateMode运行模式,来模拟真实运行的环境。 - **Encryption** diff --git a/Docs/CodeTutorial1.md b/Docs/CodeTutorial1.md index 09a91a9..86eb902 100644 --- a/Docs/CodeTutorial1.md +++ b/Docs/CodeTutorial1.md @@ -77,7 +77,7 @@ private IEnumerator InitializeYooAsset() ````c# public class BundleDecryption : IDecryptionServices { - public ulong GetFileOffset(BundleInfo bundleInfo) + public ulong GetFileOffset() { return 32; } diff --git a/Docs/CodeTutorial3.md b/Docs/CodeTutorial3.md index 8166c35..3ce2add 100644 --- a/Docs/CodeTutorial3.md +++ b/Docs/CodeTutorial3.md @@ -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的面板销毁的时候,将资源句柄列表释放,否则会造成资源泄漏。