From 27ce7e8eccadbefc5560836d59f06bdb15ec70fa Mon Sep 17 00:00:00 2001 From: Alex-Rachel <574809918@qq.com> Date: Tue, 25 Mar 2025 16:39:14 +0800 Subject: [PATCH] Update UpdateSettingEditor.cs --- .../Assets/TEngine/Editor/Utility/UpdateSettingEditor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UnityProject/Assets/TEngine/Editor/Utility/UpdateSettingEditor.cs b/UnityProject/Assets/TEngine/Editor/Utility/UpdateSettingEditor.cs index f1fb99fe..042451f8 100644 --- a/UnityProject/Assets/TEngine/Editor/Utility/UpdateSettingEditor.cs +++ b/UnityProject/Assets/TEngine/Editor/Utility/UpdateSettingEditor.cs @@ -73,7 +73,7 @@ namespace TEngine.Editor { UpdateSetting updateSetting = null; - string[] guids = AssetDatabase.FindAssets("t:ScriptGeneratorSetting"); + string[] guids = AssetDatabase.FindAssets("t:UpdateSetting"); if (guids.Length >= 1) { string path = AssetDatabase.GUIDToAssetPath(guids[0]); @@ -82,7 +82,7 @@ namespace TEngine.Editor if (updateSetting == null) { - Log.Error("Can not find ScriptGeneratorSetting"); + Log.Error("Can not find UpdateSetting"); return; }