You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: