This error : undefined, exporter version: undfinedimportMesh has failed JSON PARSE

import {
  Scene,
  Engine,
  ArcRotateCamera,
  Vector3,
  Color3,
  SceneLoader,
  BoundingInfo
} from 'babylonjs';
import 'babylonjs-loaders';
 BABYLON.SceneLoader.ImportMesh(
        '',
        url,
        '',
        scene,
        (meshs, particleSystems, skeletons) => {
          meshes = meshs;

and i load my file like this, it used to work but now its broken not sure why. im using npm and its a nextjs project.

any ideas would be appreciated.

I’m trying to load a glb model

im on babylon 4.2.0, this broke on a live project as well. Is the loading happening properly? Was working fine recently until now…

You seem to be importing everything needed to load the glb correctly. But it seems like the GLTF loader is not loaded into your loader plugins for some reason.

Are you able to share a live reproduction of the issue?

1 Like

Turns out it was a version mismatch with the babylonjs preview npm packages and 4.2.1

removing the preview package dependencies and updating the versions worked

2 Likes