Setting LineMesh Width?

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 :slight_smile:
Greetings

Short answer is no you cannot.

Thank you anyway!

That’s a bummer :man_shrugging:

Alternatives?

https://doc.babylonjs.com/snippets/line2d

https://doc.babylonjs.com/snippets/line2d#lines-in-3d

2 Likes