[QUESTION][C#.NET] How can i check if car is in the floor?
-
I have this code but even if it is a little higher then the ground it returns true, it is not detecting the floor position correctly the wheel are not even in the ground yet and it executes the code.
if (mycar.HeightAboveGround < World.GetGroundHeight(mycar.Position))
-
@preto89 try:
if (mycar.IsOnAllWheels)
-
@stillhere thankyou that helped