mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-14 19:40:47 +00:00
38 lines
722 B
C#
38 lines
722 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace YooAsset.Editor
|
|
{
|
|
public class AssetBundleBuilderSetting : ScriptableObject
|
|
{
|
|
/// <summary>
|
|
/// 构建版本号
|
|
/// </summary>
|
|
public int BuildVersion = 0;
|
|
|
|
/// <summary>
|
|
/// 压缩方式
|
|
/// </summary>
|
|
public ECompressOption CompressOption = ECompressOption.LZ4;
|
|
|
|
/// <summary>
|
|
/// 加密类名称
|
|
/// </summary>
|
|
public string EncyptionClassName = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 附加后缀格式
|
|
/// </summary>
|
|
public bool AppendExtension = false;
|
|
|
|
/// <summary>
|
|
/// 强制构建
|
|
/// </summary>
|
|
public bool ForceRebuild = false;
|
|
|
|
/// <summary>
|
|
/// 内置标签
|
|
/// </summary>
|
|
public string BuildTags = string.Empty;
|
|
}
|
|
} |