React-native: Unable to load gltf

I’m getting error when import mesh from .gltf file:

I already tried with :

  SceneLoader.Append(this.options.imgPath, 'numbers.gltf', this.scene, (object) => {
    console.log(object, 'object');
  })

and

  const assetManager = new AssetsManager(this.scene);
  const gltfTask = assetManager.addMeshTask('gltf task', '', this.options.imgPath, 'numbers.gltf');
  gltfTask.onSuccess = function(task) {
    console.log(task, 'task');
    // Access the loaded mesh from the task's loaded meshes array
    // const mesh = task.loadedMeshes[0];
  
    // Do something with the mesh, such as adding it to the scene
    // scene.addMesh(mesh);
  };
  assetManager.load();

But same things happens.

Unable to complete task .gltf task: Unable to load from https:///assets/.gltf: Unable to get absolute URL. Override BABYLON.Tools.GetAbsoluteUrl to a custom implementation for the current context.: RuntimeError: Unable to load from https:///assets/.gltf:: Unable to get absolute URL. Override BABYLON.Tools.GetAbsoluteUrl to a custom implementation for the current context.

Package.JSON:

    "@babylonjs/react-native": "^1.5.1",
    "@babylonjs/react-native-iosandroid-0-69": "^1.5.1",

Thanks

cc @BabylonNative

Can you provide a repro? What is the value of this.options.imgPath? Does the gltf asset use Draco, KTX, or MeshOpt extensions?

Hey @bghgary here is the repo:

Thanks

The glTF asset you are loading (https://dedicateddevelopers.us/babylon-suman/numbers.gltf) uses KHR_draco_mesh_compression which is unfortunately not supported in Babylon Native at the moment because of the use of WebAssembly.

3 Likes

Thanks for fast response :smiley: :smiley: :smiley:

2 Likes