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
76 lines
1.7 KiB
C#
76 lines
1.7 KiB
C#
|
|
namespace YooAsset
|
|
{
|
|
public class PackageDetails
|
|
{
|
|
/// <summary>
|
|
/// 文件版本
|
|
/// </summary>
|
|
public string FileVersion;
|
|
|
|
/// <summary>
|
|
/// 启用可寻址资源定位
|
|
/// </summary>
|
|
public bool EnableAddressable;
|
|
|
|
/// <summary>
|
|
/// 支持无后缀名的资源定位地址
|
|
/// </summary>
|
|
public bool SupportExtensionless;
|
|
|
|
/// <summary>
|
|
/// 资源定位地址大小写不敏感
|
|
/// </summary>
|
|
public bool LocationToLower;
|
|
|
|
/// <summary>
|
|
/// 包含资源GUID数据
|
|
/// </summary>
|
|
public bool IncludeAssetGUID;
|
|
|
|
/// <summary>
|
|
/// 使用可寻址地址代替资源路径
|
|
/// </summary>
|
|
public bool ReplaceAssetPathWithAddress;
|
|
|
|
/// <summary>
|
|
/// 文件名称样式
|
|
/// </summary>
|
|
public int OutputNameStyle;
|
|
|
|
/// <summary>
|
|
/// 构建资源包类型
|
|
/// </summary>
|
|
public int BuildBundleType;
|
|
|
|
/// <summary>
|
|
/// 构建管线名称
|
|
/// </summary>
|
|
public string BuildPipeline;
|
|
|
|
/// <summary>
|
|
/// 资源包裹名称
|
|
/// </summary>
|
|
public string PackageName;
|
|
|
|
/// <summary>
|
|
/// 资源包裹的版本信息
|
|
/// </summary>
|
|
public string PackageVersion;
|
|
|
|
/// <summary>
|
|
/// 资源包裹的备注信息
|
|
/// </summary>
|
|
public string PackageNote;
|
|
|
|
/// <summary>
|
|
/// 主资源文件总数
|
|
/// </summary>
|
|
public int AssetTotalCount;
|
|
|
|
/// <summary>
|
|
/// 资源包文件总数
|
|
/// </summary>
|
|
public int BundleTotalCount;
|
|
}
|
|
} |