From c3bbfe2736a773f9f03fa25c0575608e9ee6c13c Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期二, 09 十二月 2025 17:12:38 +0800
Subject: [PATCH] 0312 优化字符串拼接 - 改名

---
 Main/System/AssetVersion/AssetVersionUtility.cs |   28 ++++++++++++++--------------
 1 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/Main/System/AssetVersion/AssetVersionUtility.cs b/Main/System/AssetVersion/AssetVersionUtility.cs
index 560e381..c2f3d2f 100644
--- a/Main/System/AssetVersion/AssetVersionUtility.cs
+++ b/Main/System/AssetVersion/AssetVersionUtility.cs
@@ -87,7 +87,7 @@
     {
         checkAssetCompleted = false;
         Debug.LogFormat("寮�濮嬭幏鍙栬祫婧愮増鏈枃浠讹細鏃堕棿 {0}", DateTime.Now);
-        var assetVersionUrl = StringUtility.Contact(VersionUtility.Instance.versionInfo.GetResourcesURL(VersionConfig.Get().branch), Language.fixPath, "/AssetsVersion.txt");
+        var assetVersionUrl = StringUtility.Concat(VersionUtility.Instance.versionInfo.GetResourcesURL(VersionConfig.Get().branch), Language.fixPath, "/AssetsVersion.txt");
         assetVerUrl = assetVersionUrl;
         Debug.Log("http鍦板潃:assetVersionUrl  " + assetVersionUrl);
         HttpRequest.Instance.UnityWebRequestGet(assetVersionUrl, 5, OnGetAssetVersionFile);
@@ -258,7 +258,7 @@
         //     return false;
         // }
 
-        // if (!IsAssetValid(StringUtility.Contact("maps/", mapResConfig.MapResources.ToLower())))
+        // if (!IsAssetValid(StringUtility.Concat("maps/", mapResConfig.MapResources.ToLower())))
         // {
         //     return false;
         // }
@@ -279,8 +279,8 @@
         //             var npcConfig = NPCConfig.Get(item);
         //             if (npcConfig != null)
         //             {
-        //                 var assetbundleName = StringUtility.Contact("prefab_race_", npcConfig.MODE.ToLower());
-        //                 if (!IsAssetValid(StringUtility.Contact("gmodels/", assetbundleName)))
+        //                 var assetbundleName = StringUtility.Concat("prefab_race_", npcConfig.MODE.ToLower());
+        //                 if (!IsAssetValid(StringUtility.Concat("gmodels/", assetbundleName)))
         //                 {
         //                     return false;
         //                 }
@@ -306,26 +306,26 @@
         //    {
         //        headString = name.Substring(0, index);
         //        name = name.Substring(index + 1);
-        //        return StringUtility.Contact(headString, "/", new string(name.Reverse().ToArray()), "_aop");
+        //        return StringUtility.Concat(headString, "/", new string(name.Reverse().ToArray()), "_aop");
         //    }
         //    else
         //    {
         //        headString = name.Substring(0, index);
         //        var ext = name.Substring(dotLastIndex);
         //        name = name.Substring(index + 1, dotLastIndex - index - 1);
-        //        return StringUtility.Contact(headString, "/", new string(name.Reverse().ToArray()), "_aop", ext);
+        //        return StringUtility.Concat(headString, "/", new string(name.Reverse().ToArray()), "_aop", ext);
         //    }
         //}
         //else
         //{
         //    int dotLastIndex = name.LastIndexOf(".");
         //    if (dotLastIndex == -1)
-        //        return StringUtility.Contact(new string(name.Reverse().ToArray()), "_aop");
+        //        return StringUtility.Concat(new string(name.Reverse().ToArray()), "_aop");
         //    else
         //    {
         //        var ext = name.Substring(dotLastIndex);
         //        name = name.Substring(0, dotLastIndex);
-        //        return StringUtility.Contact(new string(name.Reverse().ToArray()), "_aop", ext);
+        //        return StringUtility.Concat(new string(name.Reverse().ToArray()), "_aop", ext);
         //    }
         //}
 
@@ -344,14 +344,14 @@
         //    {
         //        headString = name.Substring(0, index);
         //        name = name.Substring(index + 1);
-        //        return StringUtility.Contact(headString, "/", new string(name.Replace("_aop", "").Reverse().ToArray()));
+        //        return StringUtility.Concat(headString, "/", new string(name.Replace("_aop", "").Reverse().ToArray()));
         //    }
         //    else
         //    {
         //        headString = name.Substring(0, index);
         //        var ext = name.Substring(dotLastIndex);
         //        name = name.Substring(index + 1, dotLastIndex - index - 1);
-        //        return StringUtility.Contact(headString, "/", new string(name.Replace("_aop", "").Reverse().ToArray()), ext);
+        //        return StringUtility.Concat(headString, "/", new string(name.Replace("_aop", "").Reverse().ToArray()), ext);
         //    }
         //}
         //else
@@ -373,10 +373,10 @@
     {
         if (reverse)
             _assetKey = EncodeFileName(_assetKey);
-        var path = StringUtility.Contact(ResourcesPath.Instance.ExternalStorePath, _assetKey);
+        var path = StringUtility.Concat(ResourcesPath.Instance.ExternalStorePath, _assetKey);
         if (!File.Exists(path))
         {
-            path = StringUtility.Contact(ResourcesPath.Instance.StreamingAssetPath, _assetKey);
+            path = StringUtility.Concat(ResourcesPath.Instance.StreamingAssetPath, _assetKey);
         }
 
         return path;
@@ -386,10 +386,10 @@
     {
         if (reverse)
             _assetKey = EncodeFileName(_assetKey);
-        var path = StringUtility.Contact(ResourcesPath.Instance.ExternalStorePath, _assetKey);
+        var path = StringUtility.Concat(ResourcesPath.Instance.ExternalStorePath, _assetKey);
         if (!File.Exists(path))
         {
-            path = StringUtility.Contact(ResourcesPath.Instance.StreamingAssetPath, _assetKey);
+            path = StringUtility.Concat(ResourcesPath.Instance.StreamingAssetPath, _assetKey);
         }
 
         return path;

--
Gitblit v1.8.0