Within blender i have a simple model. When i import this model within THREE.js it seems to have gained faces and vertices. All images below. I am trying to get the middle circle face as a single face so that i can apply an image to it within THREE.js. Also is there an easy way to name a face within Blender so that it can be targeted within THREE?
Thanks all.
Model within blender:
Model within THREE.js:
Blender export settings:
Importing method on THREE.js
loader.load('models/poi.json', ( geometry ) => {
console.log(geometry.faces.length); // 386 faces
let mesh = new THREE.Mesh( geometry, materials );
scene.add(mesh);
});