Hey fellow problem solvers. I'm kinda unsure why an error is arrising.
the error is :
"made 0x00007ff71b1c69cd (Unity) StackWalker::GetCurrentCallstack 0x00007ff71b1cd589 (Unity) StackWalker::ShowCallstack 0x00007ff71c150943 (Unity) GetStacktrace"
I'm expecting an identifyer and a vertices2D array with the points of the line stored in it so it may be used in another class.
Man, I tried a Class I tried have a List<List> linesPoints = new List<List>(); in the tapLine class.


You are throwing the error yourself in the
vertices2DSetmethod. If you want to simply log something to the debug window, instead of usingUnityEngine.Debug.LogError, you should be usingUnityEngine.Debug.Log. I hope this answers your question.