123 1 年間 前
コミット
a3e2592561
1 ファイル変更7 行追加2 行削除
  1. 7 2
      Assets/Src/Core/DownLoad/DownloadMgr.cs

+ 7 - 2
Assets/Src/Core/DownLoad/DownloadMgr.cs

@@ -116,13 +116,18 @@ public class DownloadMgr : Singleton<DownloadMgr>
 
     private string GetDownloadBaseUrl()
     {
-#if GAME_ONE 
+#if GAME_ONE
         return "http://101.43.46.101:88/";
 #elif GAME_DEBUG
          return "http://110.40.223.119:88/";
 #else
 
-        return "http://cdn.yishanyou.com:88/";
+#if UNITY_EDITOR
+        return "http://43.248.187.68:88/";
+#else
+        return  "http://cdn.yishanyou.com:88/";
+#endif
+
 #endif
     }