I'm perplexed by the appearance of white lines in my rendered 3D model using three.js. Could these be part of the wireframe? It seems that some meshes weren't separated properly, leading to this issue. I'm unsure about how to remove the wireframe if that's the case, and I could really use some guidance on this matter. Unfortunately, I wasn't able to find any examples that could help me address this problem. Below is a screenshot displaying the issue:
https://i.sstatic.net/h5fR8.png
For reference, here is a snippet of my three.js code:
import * as THREE from '../dap/three.js-master/build/three.module.js';
import { DDSLoader } from '../dap/three.js-master/examples/jsm/loaders/DDSLoader.js';
import { MTLLoader } from '../dap/three.js-master/examples/jsm/loaders/MTLLoader.js';
import { OBJLoader } from '../dap/three.js-master/examples/jsm/loaders/OBJLoader.js';
import { OrbitControls } from '../dap/three.js-master/examples/jsm/controls/OrbitControls.js';
// Additional code and functions go here...