Hi,
This is my error, at load 3d model.
and this is my code.
let p2 = this.LoadFBXModels("3dmodels/Models.FBX").then( result => {
var count = 1;
var mesh = new THREE.InstancedMesh( result.children[0].geometry, result.children[0].material, count );
var dummy = new THREE.Object3D();
mesh.setMatrixAt( 0, dummy.matrix );
});
I want load at my local path. like this “C/myfolder/downloads”
Uncorrelated Path with my current project.
Can I?
thank u.