AssetImporters error 2022 solved
charles
Posts: 845
Sorry if everyone else already knows this, but me, I feel sometimes that's the case.
I was trying the bridge with 2022.1 and kept getting missing namespace for the AsssetImports stuff like ScriptedImporter. Spending some time going through forums here and Unity and still couldn't find an answer so finally decided to read up on the library on the wiki. Everything seemed correct, then I noticed I was looking at the 2018 wiki version so changed to 2022 and the code all still looked right...then I noticed that AssetImporters had been removed from Experimental. So just changing.
//using UnityEditor.Experimental.AssetImporters;
using UnityEditor.AssetImporters;
solved it.
Comments
Yes, I have noticed that, as well. Thanks for posting.
I think if you right-click and select "remport" on a script with references to "UnityEditor.Experimental.AssetImporters", that Unity 2020+ will automatically offer to update it to "UnityEditor.AssetImporters" for you. Let me know if that works for you.