From 25eb0e50d4e815efb16d1a9953beac6ea1c7cfc3 Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期六, 28 三月 2026 10:14:32 +0800
Subject: [PATCH] webgl merge

---
 Assets/Editor/Tool/ExportVersionConfigEx.cs |   33 +++++++++++++++++----------------
 1 files changed, 17 insertions(+), 16 deletions(-)

diff --git a/Assets/Editor/Tool/ExportVersionConfigEx.cs b/Assets/Editor/Tool/ExportVersionConfigEx.cs
index b460ad2..4245a32 100644
--- a/Assets/Editor/Tool/ExportVersionConfigEx.cs
+++ b/Assets/Editor/Tool/ExportVersionConfigEx.cs
@@ -1,20 +1,21 @@
-锘縰sing System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
-using UnityEditor;
-using System.IO;
-using UnityEngine.UI;
+锘縰sing System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using UnityEditor;
+using System.IO;
+using UnityEngine.UI;
 using System.Reflection;
 
 
-public class ExportVersionConfigEx : EditorWindow {
-
-
-    [MenuItem("绋嬪簭/鍚屾VersionConfigEx.txt", false)]
-    private static void Export()
+public class ExportVersionConfigEx : EditorWindow {
+
+
+    [MenuItem("绋嬪簭/鍚屾VersionConfigEx.txt", false)]
+    private static async void Export()
     {
         //鐢熸垚VersionConfigEx.txt 鎻愪緵缁橝OT鍚姩鏃朵娇鐢�
-        var json = JsonUtility.ToJson(VersionConfig.Get());
+        await VersionConfig.GetAsync();
+        var json = JsonUtility.ToJson(VersionConfig.config);
         string versionConfigExFile = Application.dataPath + "/Resources/VersionConfigEx.txt";
         if (File.Exists(versionConfigExFile))
         {
@@ -25,7 +26,7 @@
         AssetDatabase.Refresh();
         Debug.Log("鍚屾VersionConfigEx.txt鎴愬姛");
 
-    }
-
-  
-}
+    }
+
+  
+}

--
Gitblit v1.8.0