Draw.WithLineWidth also for ingame?

Hi,

I just got the asset a week ago and I am already pleased with its straightforwardness. Some of the things do not work as intuitively as expected though. I tried this code and though it didn’t give errors, it didn’t change the results regarding the lineWidth either:

    using (Draw.WithLineWidth(30)) 
    {
        Draw.ingame.Line(trumpetStart,transform.forward * 5, Color.blue); 
    }

I can see the draw result, but I don’t see any indication that the width is anything more than ‘1’ pixel.

Best, Hans.

You have to use Draw.ingame.WithLineWidth(30).

1 Like

Thanks, that did the trick!!!