All checks were successful
Plugin Library CI / publish (00.BuildOriginality) (push) Successful in 3s
Plugin Library CI / publish (07.RKTools) (push) Successful in 2s
Plugin Library CI / publish (00.StaryEvo) (push) Successful in 4s
Plugin Library CI / publish (00.StaryEvoTools) (push) Successful in 10s
Plugin Library CI / publish (01.HybridCLR) (push) Successful in 5s
Plugin Library CI / publish (02.InformationSave) (push) Successful in 3s
Plugin Library CI / publish (03.YooAsset) (push) Successful in 1m25s
Plugin Library CI / publish (04.AudioCore) (push) Successful in 4s
Plugin Library CI / publish (05.TableTextConversion) (push) Successful in 4s
Plugin Library CI / publish (06.UIFarme) (push) Successful in 16s
Plugin Library CI / publish (08.UniTask) (push) Successful in 3s
Plugin Library CI / publish (09.CodeChecker) (push) Successful in 16s
Plugin Library CI / publish (10.StoryEditor) (push) Successful in 3s
Plugin Library CI / publish (10.XNode) (push) Successful in 4s
Plugin Library CI / publish (11.PointCloudTools) (push) Successful in 3s
28 lines
706 B
C#
28 lines
706 B
C#
|
||
namespace YooAsset
|
||
{
|
||
public class ManifestDefine
|
||
{
|
||
/// <summary>
|
||
/// 文件极限大小(100MB)
|
||
/// </summary>
|
||
public const int FileMaxSize = 104857600;
|
||
|
||
/// <summary>
|
||
/// 文件头标记
|
||
/// </summary>
|
||
public const uint FileSign = 0x594F4F;
|
||
|
||
/// <summary>
|
||
/// 文件格式版本
|
||
/// </summary>
|
||
public const string FileVersion = "2025.9.30";
|
||
public const string VERSION_2025_8_28 = "2025.8.28";
|
||
public const string VERSION_2025_9_30 = "2025.9.30";
|
||
|
||
/// <summary>
|
||
/// 版本兼容
|
||
/// </summary>
|
||
public const bool BackwardCompatible = true;
|
||
}
|
||
} |