【m】优化打包工具

1.修复包体配置项在配置文件Inspector面板不显示的问题
2.修复在打包工具面板修改包体配置时无法保存的问题
This commit is contained in:
mzh
2026-03-31 17:28:20 +08:00
parent dd9e8e21a4
commit a42a663ad2
4 changed files with 18 additions and 2 deletions

View File

@@ -68,6 +68,7 @@ namespace Stary.Evo
[Serializable]
public class BuildConfig
{
[SerializeField]
[LabelText("包体配置")]
private List<PackageConfig> packages = new();
@@ -77,6 +78,7 @@ namespace Stary.Evo
if (result == null)
{
result = new PackageConfig();
result.packageID = packageID;
packages.Add(result);
}
return result;