ColladaLoader hollow structures cannot be read properly

38 Views Asked by At

I currently have some open source .dae data, but I found that as long as it is in the hollow structure file format, it is cannot be read normally by three.js ColladaLoader().

let loaderDae = new ColladaLoader();
loaderDae.load('assets/W_1P4GK6NH0X/W_1P4GK6NH0X.dae', (gltf: any) => {
  
  this.model = gltf.scene.children[0];   
  this.model.position.multiplyScalar(0);
  this.scene.add(this.model);
});

enter image description here

But it can preview through blender:

enter image description here

Is there any method or tool to detect the integrity of the archive and repair it.

Example file link(W_1P4GK6NH0X).

0

There are 0 best solutions below