2022-04-13 16:19:57 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
|
|
namespace YooAsset.Editor
|
|
|
|
|
|
{
|
|
|
|
|
|
public class AssetBundleBuilderSetting : ScriptableObject
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 构建版本号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int BuildVersion = 0;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2022-05-02 23:15:09 +08:00
|
|
|
|
/// 构建模式
|
2022-04-13 16:19:57 +08:00
|
|
|
|
/// </summary>
|
2022-05-02 23:15:09 +08:00
|
|
|
|
public EBuildMode BuildMode = EBuildMode.ForceRebuild;
|
2022-04-13 16:19:57 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2022-05-21 22:24:05 +08:00
|
|
|
|
/// 内置资源标签(首包资源标签)
|
2022-04-13 16:19:57 +08:00
|
|
|
|
/// </summary>
|
2022-05-02 23:15:09 +08:00
|
|
|
|
public string BuildTags = string.Empty;
|
2022-04-13 16:19:57 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2022-05-02 23:15:09 +08:00
|
|
|
|
/// 压缩方式
|
2022-04-13 16:19:57 +08:00
|
|
|
|
/// </summary>
|
2022-05-02 23:15:09 +08:00
|
|
|
|
public ECompressOption CompressOption = ECompressOption.LZ4;
|
2022-04-13 16:19:57 +08:00
|
|
|
|
|
2022-04-27 11:02:30 +08:00
|
|
|
|
/// <summary>
|
2022-05-02 23:15:09 +08:00
|
|
|
|
/// 加密类名称
|
2022-04-27 11:02:30 +08:00
|
|
|
|
/// </summary>
|
2022-05-02 23:15:09 +08:00
|
|
|
|
public string EncyptionClassName = string.Empty;
|
2022-04-27 11:02:30 +08:00
|
|
|
|
|
2022-04-13 16:19:57 +08:00
|
|
|
|
/// <summary>
|
2022-05-02 23:15:09 +08:00
|
|
|
|
/// 附加后缀格式
|
2022-04-13 16:19:57 +08:00
|
|
|
|
/// </summary>
|
2022-05-02 23:15:09 +08:00
|
|
|
|
public bool AppendExtension = false;
|
2022-04-13 16:19:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|