Hi there, I was wondering if anyone knew of a way to change the start and end width of each section of a line (via linerenderer) rather than the entire line? It doesn’t seem possible via the docs - if it’s not, can anyone recommend a method of achieving this?
Create a List<Vector3> where you store all your values inside. If you want to change the positions, you can do this by setting a new element to position 0 (first) and Count-1 (last).
_myList[0] = new Vector3();
_myList[_myList.Count -1] = new Vector3();
After that, update your LineRenderer by iterating over the list and set positions again.