- Home /
How to get an Object to move physically correct (velocity)
Hello,
I’m currently struggling with the animation of a roller coaster. I am building a VR where one should be in a wagon of a roller coaster and the wagon should follow a rail, including loopings. My main problem here is the velocity. Right now my velocity is derived from the angle of the wagon, like getting faster when it's going down, but it doesnt look natural. I need it to move more physically correct, because it is important for the feeling in the VR. I heard about some Physics Engine in Unity, but I don’t know anything about it. And I can't find a good way to do it.
Thanks in advance!
Answer by Bunny83 · Jun 11, 2018 at 06:43 AM
Unity's physics system is not very good at simulating rollercoaster mechanics. The physics system is great for low moderate velocities and forces and for handling collisions between rigidbody objects and calculating collision responses. However almost none of that is necessary for a rollercoaster. The extremely high forces and velocities you have to deal with would become totally unstable.
To simulate a rollercoaster i would use a linearized spline path. This gamedev question has some great links on how to do this. Once you have a perfect linear mapping between the worldspace distance and the logical distance on our path the whole problem becomes one dimensionally as you can precalculate many things of the 3d environment like the affect of gravity based on the position along the spline path. You simply need to iterate the whole path at tiny steps and calculate the slope / angle to know how much influence gravity has at a point. You can store those samples in an animation curve which you can easily sample. If you store the effect of gravity as the local acceleration at this point you naturally get acceleration when going downhill and deceleration (negative acceleration) when going uphill.
So each wheel group would simply be a point on the spline. It's position would just be a single float value. Likewise the velocity also would just be a single float as we reduced the problem to a one dimensional problem.
You most likely want to use two parallel spline paths or one path and a normal vector at each point to specify the rotation around the spline path (in order to get a stable rotation and to be able to do screw motions, upside-down, etc). The normal approach as several advantages. Seperate splines have the problem that you need to take care of syncing the left and right track so the right side doesn't get "faster" than the left. Also the relative distance between the two tracks would be difficult to get right if you place the splines manually.
Things like expected g-forces / centrifugal forces can also be precalculated and sampled based on the position on the path and the current velocity.
This way you don't have to care about the wagon wheel to track collision and all the high forces that in real-life would be responsible for keeping the wagons on the track. This is basically a seperation of the pure rollercoaster mechanic which is one dimensional and the actual visual representation of the simulation.