Unity: FMOD Reference Updater takes 15minutes to scan

Hi,

Thanks for reporting the issue - 15 minutes definitely seems out of the ordinary unless your project is absolutely massive. I’ll do some testing on my end and see whether there’s anything that can be improved, but for reference, can I get you to run the following lines of code to count the assets that the EventReferenceUpdater scans, and provide me with the results?

string[] searchFolders = { "Assets" };

int totalPrefabs = AssetDatabase.FindAssets("t:GameObject", searchFolders).Length;
int totalScenes = AssetDatabase.FindAssets("t:Scene", searchFolders).Length;
int totalScriptableObjects =
    AssetDatabase.FindAssets("t:ScriptableObject", searchFolders).Distinct().ToArray().Length;

Debug.Log("Scanned asset counts:" +
    "\nPrefab count = " + totalPrefabs +
    "\nScene count = " + totalScenes +
    "\nScriptable Object count = " + totalScriptableObjects
);