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);
});
But it can preview through blender:
Is there any method or tool to detect the integrity of the archive and repair it.
Example file link(W_1P4GK6NH0X).

