Unity3DTiles icon indicating copy to clipboard operation
Unity3DTiles copied to clipboard

Unity 2022.2 and higher -- UnityEditor.Experimental.AssetImporters not found

Open quietpixel opened this issue 3 years ago • 0 comments

When updating the project to Unity 2022.2 or higher, the AssetImporterEditor and ScriptedImporter classes are not found. This is because UnityEditor.Experimental.AssetImporters was promoted to non-experimental status.

To fix the compilation issues, go into GLTFImporter.cs and GLTFlmporterInspector.cs and change

using UnityEditor.Experimental.AssetImporters

to

using UnityEditor.AssetImporters

quietpixel avatar Jul 26 '22 19:07 quietpixel