Files
YooAsset/Assets/YooAsset/Runtime/BundleCache/Services/BuiltinBundleCache/BuiltinCatalogConsts.cs
2026-03-09 17:06:28 +08:00

35 lines
831 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 YooAsset
{
/// <summary>
/// 内置资源目录常量定义
/// </summary>
internal class BuiltinCatalogConsts
{
/// <summary>
/// 文件极限大小100MB
/// </summary>
public const int MaxFileSize = 104857600;
/// <summary>
/// 文件头标记
/// </summary>
public const uint FileHeader = 0x133C5EE;
/// <summary>
/// 文件格式版本
/// </summary>
public const string FileVersion = "1.0.0";
/// <summary>
/// JSON文件名称
/// </summary>
public const string JsonFileName = "BuiltinCatalog.json";
/// <summary>
/// 二进制文件名称
/// </summary>
public const string BinaryFileName = "BuiltinCatalog.bytes";
}
}