重构了资源构建页面,方便扩展自定义界面。
This commit is contained in:
何冠峰
2025-06-17 15:29:54 +08:00
parent 06a50a049e
commit 3949abb53f
33 changed files with 814 additions and 498 deletions

View File

@@ -1,8 +1,13 @@

using UnityEditor;
using UnityEngine;
namespace YooAsset.Editor
{
public interface IBuildPipeline
{
/// <summary>
/// 运行构建任务
/// </summary>
BuildResult Run(BuildParameters buildParameters, bool enableLog);
}
}