Created
November 6, 2025 20:33
-
-
Save unitycoder/8f093e4e23950772465ab86e4bf76f30 to your computer and use it in GitHub Desktop.
Disable Unity Editor Indexing Service
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // https://discussions.unity.com/t/how-to-disable-searcher-in-6-4/1693707/6 | |
| // You can disable indexing of assets for advance search (this is what is crashing) by modifyin the UserSettings/Search.index file in your project: | |
| { | |
| "name": "Assets", | |
| "type": "asset", | |
| "roots": [ | |
| ], | |
| "includes": [], | |
| "excludes": [ | |
| "Assets/Temp/", | |
| "Assets/External/", | |
| "Temp/" | |
| ], | |
| "options": { | |
| "disabled": false, | |
| "types": true, | |
| "properties": true, | |
| "extended": true, | |
| "dependencies": true | |
| }, | |
| "baseScore": 999 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment