Skip to content

Commit

Permalink
refactor: remove custom cache since it didn't provide any help
Browse files Browse the repository at this point in the history
  • Loading branch information
Misaka-L committed Oct 27, 2024
1 parent 948d638 commit 04d748d
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,7 @@ public static async Task<AutoBuildArguments> InitAutoBuildAsync()
{
var args = GetArguments();

var customCachePath = Path.GetFullPath("AutoBuildCache");
Debug.Log("Custom cache path: " + customCachePath);
Directory.CreateDirectory(customCachePath);
Caching.currentCacheForWriting = Caching.AddCache(customCachePath);
Debug.Log("Application Cache Path: " + Application.temporaryCachePath);

Debug.Log("Opening scene");
EditorSceneManager.OpenScene(args.ScenePath, OpenSceneMode.Single);
Expand Down

0 comments on commit 04d748d

Please sign in to comment.