Files
Fishing2/Assets/Scripts/NBC/Asset/Editor/Defs/BundleMode.cs

35 lines
820 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace NBC.Asset.Editor
{
public enum BundleMode
{
/// <summary>
/// 一个ab
/// </summary>
[DisplayName(Language.BundleModeSingle)]
Single,
/// <summary>
/// 按文件夹每个独立文件夹为一个ab包
/// </summary>
[DisplayName(Language.BundleModeFolder)]
Folder,
/// <summary>
/// 父级文件夹
/// </summary>
[DisplayName(Language.BundleModeFolderParent)]
FolderParent,
/// <summary>
/// 每个文件一个ab
/// </summary>
[DisplayName(Language.BundleModeFile)]
File,
/// <summary>
/// 忽略子文件夹
/// </summary>
[DisplayName(Language.BundleModeWithoutSub)]
WithoutSub
}
}