Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Best practice for controllers slowing down/speeding up along the spline
#1
Hello all!

I'm trying to build a race circuit viewed from the top, with cars (as dots) moving along the path, like this:

[Image: MNzqBpo.png]

To be somewhat credible, I don't want the cars to have uniform speed, as they should slow down at the entry of a turn, and speed up at the exit. I just need something simple however.

What would be the best way to achieve that? I was thinking maybe setting up multiple "slowdown" / "speedup" events along the path? In that case, could I pass along something like an AnimatedCurve as a parameter, to better control the change of speed, or am I limited to bool/float/string?

Thank you, cheers!
Reply
#2
Hi
I see few ways of doing it:
  1. The one you suggested, using custom events: These events are implemented using regular Unity. I can't try it for now yo be sure (I am on vacation), but try making a public method that takes an AnimationCurve, and see if the event can call it)
  2. Automatic speed variation based on the tangent variation: Change the speed of the controller based on the curvature of the track. You can compute it by computing the delta between the spline tangent at a specific point vs at a point slightly before.
  3. Using MetaData. Scene 01_MetaData shows how a controller has a height variation using meta data. You can do something similar to modify the speed.
    I hope this helped. Have a nice day
Available for freelance work, feel free to reach out: toolbuddy.net
Please consider leaving a review for Curvy, this helps immensely. Thank you.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Smile Constant speed along a spline? tfishell 1 319 11-13-2025, 11:32 AM
Last Post: _Aka_
  SplineController Ignores Follow-Up and Chooses Wrong Spline Josenildo 7 3,685 07-29-2025, 09:15 PM
Last Post: _Aka_
  Curvy Line Renderer for UI Spline? gekido 7 5,164 07-13-2025, 07:11 PM
Last Post: _Aka_
  Is there a way to get the position of each ControlPoint in spline by API? Chanon 1 1,869 06-07-2025, 09:44 AM
Last Post: _Aka_

Forum Jump: