Hello everybody!!!
I have created two lines with the same start point by using line renderer. I would like to fill the space between the two lines with a translucent color as the image below. I would appreciate any help.
There are dozens of caveats to this, but the place to get started would probably be to build a Procedural Mesh of 2 triangles between the start and end points of each of those lines. Since both share a starting point, you could simplify it into a single triangle on that basis.
For efficiency, you’d just want to make sure you’re using a List<> rather than an Array for vertices and triangles.
