using UnityEngine; namespace YooAsset { [CreateAssetMenu(fileName = "YooAssetSettings", menuName = "YooAsset/Create YooAsset Settings")] internal class YooAssetSettings : ScriptableObject { /// /// YooAsset文件夹名称 /// public string DefaultYooFolderName = "yoo"; /// /// 资源清单前缀名称(默认为空) /// public string PackageManifestPrefix = string.Empty; /// /// 清单文件头标记 /// public const uint ManifestFileSign = 0x594F4F; /// /// 清单文件极限大小(100MB) /// public const int ManifestFileMaxSize = 104857600; /// /// 清单文件格式版本 /// public const string ManifestFileVersion = "2.2.5"; /// /// 构建输出文件夹名称 /// public const string OutputFolderName = "OutputCache"; } }