Currently, I am utilizing Three.js (v0.86.0) to render a grid:
let grid = new THREE.GridHelper(1000, 20);
scene.add(grid);
Upon inspection, the lines generated by GridHelper
appear to have a thickness of 1 pixel.
I am interested in increasing the thickness of these lines to 3 pixels, but so far my attempts at changing the value of
grid.geometry.getAttribute("position").itemSize
have been unsuccessful.
Any suggestions on how I can achieve this?