It's a straightforward process, I import my OBJ model that was exported using 3DS Max.
I have the intention of coloring a specific section of the Object.
During the animation loop, I implement the following:
scene.traverse( function( object ) {
scene.getObjectByName("ConcreteMeshName").material.color.set(0xff0000);
})
However, the result is that the entire model gets colored. Can anyone shed some light on why this is happening? Everything appears to be in order within the DOM structure.