How to get Roll at spline point using local t param at segment of spline?

I’ve figured out something, check this:

If you want to get spline Roll at 0.5 (or any other from [0.0-1.0] range) time between spline points, let’s name them point A and point B, then:

  1. Get distance of point A and point B and save the values in A_Distance and B_Distance variables
  2. Create a Get Roll at Distance Along Spline node for your spline
  3. In the ‘Distance’ node input plug in a Lerp node
  4. In Lerp node, into ‘A’ input plug in your A_Distance variable and into ‘B’ input plug in your B_Distance variable. Into ‘Alpha’ input plug in your desired time, from 0.0 to 1.0.

This way you will get a roll at time between two specified spline points.