2025-10-31 11:18:23 +08:00
|
|
|
|
using System.Collections;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using UnityEditor;
|
|
|
|
|
|
|
|
|
|
|
|
namespace YooAsset.Editor
|
|
|
|
|
|
{
|
|
|
|
|
|
public class RawFileBuildParameters : BuildParameters
|
|
|
|
|
|
{
|
2026-04-13 22:36:57 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 文件哈希值计算包含路径信息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool IncludePathInHash = false;
|
2025-10-31 11:18:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|