Safe to Delete

Unity Editor AssetCache Folder

Quick Answer: AssetCache stores imported Unity Asset Store packages and shader artifacts. Deleting it is safe and recovers lost space on Unity game developer drives.

Bottom Line: It is 100% safe to delete the Unity AssetCache folder. Deleting it will not corrupt your Unity projects or erase your purchased Unity Asset Store licenses.


What is the Unity AssetCache Folder?

Located at %LocalAppData%\Unity\cache on Windows or ~/Library/Unity/cache on macOS, AssetCache is created by the Unity Editor and Unity Hub.

When you download 3D models, textures, audio packs, or code plugins from the Unity Asset Store, Unity saves compressed package copies into AssetCache/packages. Additionally, Unity keeps compiled shader and texture cache artifacts in this directory.

Over time, as you test different Asset Store packages across projects, AssetCache hoards gigabytes of old .unitypackage files you no longer need.


Can You Delete Unity AssetCache?

✅ Yes, it is completely safe to delete.

  • No project data lost: Your actual game source code, scenes, and project Assets/ folders live in your project directories and are untouched.
  • Asset Store licenses remain: You can always re-download any purchased Asset Store package for free directly inside the Unity Package Manager.

How to Safely Clean Up Unity AssetCache

Method 1: Delete Cache Folders via File Explorer / Finder

# Windows (Command Prompt)
rmdir /s /q %LocalAppData%\Unity\cache

# macOS (Terminal)
rm -rf ~/Library/Unity/cache

Method 2: Purge Cache inside Unity Hub

  1. Open Unity Hub.
  2. Go to Preferences (Gear Icon) > Projects / Downloads.
  3. Clear downloaded installer-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder)-folder) and package caches.

Discussion

Loading authentication...

Related in developer

The AI Engineer's Model Disk Cleanup Guide: Hugging Face, Ollama & PyTorch

The ultimate 1,200-word field guide for AI developers and local LLM hobbyists to reclaim 200GB+ from Ollama, Hugging Face, PyTorch, and vLLM model weights.

Safe to Delete

Android Studio System Index Cache (AndroidStudio Cache)

Android Studio caches Gradle project indexes, VFS caches, and compiler artifacts. Invalidate and clear is safe.

Safe to Delete

Ansible Automation Temp & Fact Cache (~/.ansible/tmp)

Ansible stores temporary playbook execution modules and target host fact JSON caches in ~/.ansible/tmp. Clearing Ansible tmp is safe.

Safe to Delete
Back to all files