public static void RemoveLibraryCache()
        {
            try {
                EditorFileUtils.DeleteDirectoryFiles(AddressablesCachePath);
                EditorFileUtils.DeleteSubDirectories(AddressablesCachePath);
            }
            catch (Exception e) {
                Debug.LogError(e);
            }

            GameLog.Log("Addressables Library Cache Removed");
        }