From 806561ff72306056139f7b95b429bba12e8c5536 Mon Sep 17 00:00:00 2001 From: Ding Yuntian <1491671119@qq.com> Date: Fri, 6 Mar 2026 15:32:42 +0800 Subject: [PATCH] =?UTF-8?q?style(editor):=20=E7=AE=80=E5=8C=96=20TimelineN?= =?UTF-8?q?ameCache=20=E4=BB=A3=E7=A0=81=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made-with: Cursor --- .../Editor/TimelineNameCollector/TimelineNameCache.cs | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Assets/Editor/TimelineNameCollector/TimelineNameCache.cs b/Assets/Editor/TimelineNameCollector/TimelineNameCache.cs index c79daf725..0a3f9319e 100644 --- a/Assets/Editor/TimelineNameCollector/TimelineNameCache.cs +++ b/Assets/Editor/TimelineNameCollector/TimelineNameCache.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.Security.Cryptography; @@ -30,15 +30,11 @@ namespace AibisDream.EditorTools public int version = CurrentVersion; public string lastFullScanTime; public List entries = new List(); - - private static readonly string CacheFolderRelativePath = "Assets/Editor/TimelineNameCollector/Cache"; private static readonly string CacheFileName = "timeline_name_cache.json"; - public static string CacheFolderFullPath => - Path.Combine(Application.dataPath, "Editor/TimelineNameCollector/Cache"); + public static string CacheFolderFullPath => Path.Combine(Application.dataPath, "Editor/TimelineNameCollector/Cache"); - public static string CacheFileFullPath => - Path.Combine(CacheFolderFullPath, CacheFileName); + public static string CacheFileFullPath => Path.Combine(CacheFolderFullPath, CacheFileName); public static TimelineNameCache Load() {