In LibGDX 2d we can draw/define line thickness with "lineWidth" e.g.
shapeRenderer.rectLine(new Vector2(x1,y1),new Vector2(x2,y2),lineWidth);
Is there a way to implement something similar in Mesh or meshpart without changing glLineWidth() value?
Thanks.