diff --git a/Assets/QFramework/Toolkits/ResKit/Scripts/Framework/ResSearchKeys.cs b/Assets/QFramework/Toolkits/ResKit/Scripts/Framework/ResSearchKeys.cs index 52bddbcd..6fdcd361 100644 --- a/Assets/QFramework/Toolkits/ResKit/Scripts/Framework/ResSearchKeys.cs +++ b/Assets/QFramework/Toolkits/ResKit/Scripts/Framework/ResSearchKeys.cs @@ -7,30 +7,44 @@ ****************************************************************************/ using System; +using System.Diagnostics; namespace QFramework { - public class ResSearchKeys : IPoolable,IPoolType - { + public class ResSearchKeys : IPoolable, IPoolType + { public string AssetName { get; set; } - public string OwnerBundle { get; set; } + public string OwnerBundle { get; set; } public Type AssetType { get; set; } public string OriginalAssetName { get; set; } - - + + public static ResSearchKeys Allocate(string assetName, string ownerBundleName = null, Type assetType = null) { var resSearchRule = SafeObjectPool.Instance.Allocate(); - resSearchRule.AssetName = assetName.ToLower(); + + if (assetName.Contains("netimage:") || + assetName.Contains("localimage:") || + assetName.Contains("localaudio:") || + assetName.Contains("localtext:") || + assetName.Contains("localbytes:")) + { + // 暂时这样写死处理 + resSearchRule.AssetName = assetName; + } + else + { + resSearchRule.AssetName = assetName.ToLower(); + } resSearchRule.OwnerBundle = ownerBundleName == null ? null : ownerBundleName.ToLower(); resSearchRule.AssetType = assetType; resSearchRule.OriginalAssetName = assetName; return resSearchRule; } - + public void Recycle2Cache() { SafeObjectPool.Instance.Recycle(this); @@ -51,10 +65,10 @@ namespace QFramework { isMatch = isMatch && res.OwnerBundleName == OwnerBundle; } - + return isMatch; } - + return false; } diff --git a/Assets/Scripts/Actions/TimeLineAction.cs b/Assets/Scripts/Actions/TimeLineAction.cs index 505746e4..919ffb26 100644 --- a/Assets/Scripts/Actions/TimeLineAction.cs +++ b/Assets/Scripts/Actions/TimeLineAction.cs @@ -60,7 +60,6 @@ public class TimeLineAction : IAction public void OnExecute(float dt) { - Debug.LogError($"time:{play.time * fps} >= curEnd:{curEndFrame} "); if (curEndFrame != -1 && play.time * fps >= curEndFrame) { play.time = curEndFrame / 24; @@ -69,7 +68,6 @@ public class TimeLineAction : IAction } if (play.state != PlayState.Playing) { - Debug.LogError("Finished"); Finished(); } } diff --git a/Assets/Scripts/Editor/VirtualFPostProcess.cs b/Assets/Scripts/Editor/VirtualFPostProcess.cs index 41b0b061..37b625a1 100644 --- a/Assets/Scripts/Editor/VirtualFPostProcess.cs +++ b/Assets/Scripts/Editor/VirtualFPostProcess.cs @@ -18,7 +18,7 @@ public class VirtualFPostProcess : IPostprocessBuildWithReport if (Directory.Exists(dataFolderPath)) { // 目标目录强制小写 - string targetDataPath = Path.Combine(buildOutputPath, "data"); + string targetDataPath = Path.Combine(buildOutputPath, "Data"); CopyDirectoryWithLowerCaseNames(dataFolderPath, targetDataPath); Debug.Log($"数据目录已复制到: {targetDataPath}"); } @@ -41,23 +41,25 @@ public class VirtualFPostProcess : IPostprocessBuildWithReport private void CopyDirectoryWithLowerCaseNames(string sourceDir, string targetDir) { // 创建小写目标目录 - var lowerTargetDir = ConvertToLowerPath(targetDir); - Directory.CreateDirectory(lowerTargetDir); + //var lowerTargetDir = ConvertToLowerPath(targetDir); + Directory.CreateDirectory(targetDir); // 复制文件(带小写转换) foreach (var file in Directory.GetFiles(sourceDir)) { string fileName = Path.GetFileName(file); - string lowerName = ConvertToLowerPath(fileName); - File.Copy(file, Path.Combine(lowerTargetDir, lowerName), true); + // 暂时废弃小写转换 + //string lowerName = ConvertToLowerPath(fileName); + File.Copy(file, Path.Combine(targetDir, fileName), true); } // 递归处理子目录(带小写转换) foreach (var dir in Directory.GetDirectories(sourceDir)) { string dirName = Path.GetFileName(dir); - string lowerDirName = ConvertToLowerPath(dirName); - CopyDirectoryWithLowerCaseNames(dir, Path.Combine(lowerTargetDir, lowerDirName)); + // 暂时废弃小写转换 + //string lowerDirName = ConvertToLowerPath(dirName); + CopyDirectoryWithLowerCaseNames(dir, Path.Combine(targetDir, dirName)); } }