Is there a way to set a wider width or make it bolder to LineMeshes?
Due to performance issues, i don’t want to combine LineMesh with edge rendering.
line = Mesh.CreateLines('lm', points, scene, true);
line.color = Color3.Black(); // works as expected
// these make the line disappear
line.mesh.scaling.setAll(100);
// or
line.mesh.scaling.set(10,100,1);
Thank you in advance, I’d appreciate any ideas or feedback
Greetings