traction assist could be used for slow moving offroad vehicles, not useful for your case.
you want to activate this assist in a specific case which involves finding whether the vehicle is rotating due to inertia. that sounds difficult since any external force could cause a rotational velocity. you could try activating while rotational velocity and your steering direction are in opposite directions and also you can take understeering(check updateESP function to see how it can be detected) into account. if you are not understeering then this effect may result unwanted wild steers. you can use lateral/longitudinal slip values instead of using car speed, they are calculated from local velocity vectors. finally look out for multiple assists activating at the same time, they can generate forces eliminating each other and/or generate chaotic results.
This mostly works, at least is a start. I need to find a better variable to get the angular velocity / rotation force to one side… dont know what can be the best.
The bug is when the car not rotates( mostly stopped) but clearly have forces to that direction, but is something. Any idea to test?. Also still i need to add the mCurrentSteer condition to limit more to the case i want.
even if the vehicle is not moving tires always generate forces, it’s how the simulation works, there is no sleep mode, so you need to filter those when the vehicle is stationary or slow.
Now i can do this in a more easy way and better car direction control when slide:
Also i set steer gravity to 10 and their range to 100 for more precision, and edited the StandardInput steer with this:
mSteerInput = FMath::Clamp(mSteerInput * FMath::Abs(mHorizontal * 1.2f) , -mCurrentSteeringLimit, mCurrentSteeringLimit);
That (mHorizontal * 1.2f) takes the stick position too on steer, so it adds much more precision at any speed that only using the steer speed/limit curves in the editor.
no volumetric wheels yet, we tested convex(cylinder) casting successfully with the unity version so it will most likely be available for the unreal version too. full change list will be posted with the release.
the main feature of the new version is the convex casting option. i completed the new unity version and started porting the features to unreal but it seems that there is no way to cast a convex shape with unreal. they simply haven’t implemented that part yet. someone asked about it 5 years ago and it’s still not there. the only way is to modify the source of the engine but it’s not a valid option for us.
I see, so, no more updates until Epic fixes the issue? Because i guess you already tried some workarounds or had in mind release without that but if still is gonna be hold is due that feature is important to other updates i guess.
Any idea about if Chaos on UE5 supports convex shape ?
i do not believe epic will ever fix that, i have one more idea to try but it requires some fundamental changes so next update is on hold for now. chaos is not an option until it becomes the default physics engine.
Great! so, no updates just compatible now with 4.27 right?
I saw in the website now in 3D wheels appears “convex shape” but i guess is just for unity right? It not appears the “*” to say is only in unity but due you said, or the workaround idea worked ?