How to draw discontinuous splines using bluprints

This is not available in BPs. But you can dynamically add any number of spline components and set their points. As you iterate through data, and you know you’re done with a shape, close the spline.

Then add a new spline component and carry on with another set of points.


But again, splines need to be visualised at some point using Spline Mesh Components. So another option is to keep it as is, and skip adding an SMC where it’s not needed - the connecting length. But this is more convoluted and would require adjusting tangents in some way.

I am using a spline component and I was able to draw a spline with number of input x,y coordinates using a for loop in a blueprint. But as a requirement I am trying to break a one spline part from the other. That means I want to break the set of points by checking a condition and draw a number of disconnected splines

Simply I want to break the two polygons connected line using the same spline component as there are undefined number of data

Thanks a lot