Spline component is a what kind of spline

It is a are Catmull-Rom splines or Cubic Hermite spline or etc.
And I have a spline component , how can i get the any points in spline?
Or if I have control points how can i get the spline?

I think they are Catmull Splines, because you only have one tangent.

In BPs, you can access any location of a spline by the “Get Location at Distance Along Spline”, you just need a distance you can access with “Get Distance Along Spline at Spline Point”.
So you can get any Position between 2 spline-points via an Interpolation (FInterpTo) of the two points using these functions.
You can also get the number of Spline Points with “GetNumberOfSplinePoints”

Thank you a lot. I will try with your answer :slight_smile: