Update editor code

调整加密文件的生成规则
This commit is contained in:
hevinci
2022-11-01 23:13:18 +08:00
parent b5f2174ed0
commit 3413157c67
15 changed files with 263 additions and 233 deletions

View File

@@ -349,9 +349,9 @@ namespace YooAsset.Editor
}
/// <summary>
/// 文件移动
/// 移动文件
/// </summary>
public static void FileMoveTo(string filePath, string destPath)
public static void MoveFile(string filePath, string destPath)
{
if (File.Exists(destPath))
File.Delete(destPath);
@@ -359,7 +359,7 @@ namespace YooAsset.Editor
FileInfo fileInfo = new FileInfo(filePath);
fileInfo.MoveTo(destPath);
}
/// <summary>
/// 拷贝文件夹
/// 注意:包括所有子目录的文件