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