mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
19 lines
305 B
C#
19 lines
305 B
C#
|
|
namespace YooAsset.Editor
|
|
{
|
|
/// <summary>
|
|
/// 输出文件名称的样式
|
|
/// </summary>
|
|
public enum EOutputNameStyle
|
|
{
|
|
/// <summary>
|
|
/// 哈希值名称
|
|
/// </summary>
|
|
HashName = 1,
|
|
|
|
/// <summary>
|
|
/// 资源包名称 + 哈希值名称
|
|
/// </summary>
|
|
BundleName_HashName = 4,
|
|
}
|
|
} |