Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Issue Keeping Rigidbody Player Following Spline
#1
Question 
With Curvy 1.6 I used the following code to keep my custom rigidbody controller aligned to a spline in the X axis.

Code:
Vector3 splinePosition = Spline.Interpolate(TF);
// Bring the player back onto the spline if they drift from it i.e. running round curves etc.
Vector3 offset = new Vector3(transform.position.x - splinePosition.x, 0, 0);
if (offset.sqrMagnitude > 0.001f)
{
    transform.position -= offset.normalized * Time.deltaTime;
}

However after upgrading to Curvy 2, this code no longer functions as expected. The controller follows the overall shape of the spline, but is not aligned to it i.e. following along on top of the tangents/curve.

I assume that my approach is now outdated in Curvy 2, but i am at a loss as to work out how to upgrade it. 

So if anyone has any hints/suggestions, I'd appreciate the assistance.
Reply


Messages In This Thread
Issue Keeping Rigidbody Player Following Spline - by Yog-Shoggoth - 12-22-2015, 08:19 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Rasterized Path Range issue proton 2 12 04-15-2024, 03:42 PM
Last Post: _Aka_
  Curvy Line Renderer for UI Spline? gekido 3 6 04-04-2024, 12:56 PM
Last Post: _Aka_
  Get position of all control points for a spline gekido 1 6 03-28-2024, 10:08 PM
Last Post: _Aka_
Bug Changing spline connection in inspector causes splines to revert to defaults lacota 3 6 03-18-2024, 07:55 PM
Last Post: _Aka_

Forum Jump: