bttf92 Posted September 10, 2013 Share Posted September 10, 2013 Hi! How I discover if a car is going backwards? I tried Car.Velocity and Car.Direction but without results. And .Speed gives always the absolute value. Link to comment Share on other sites More sharing options...
nixolas1 Posted September 11, 2013 Share Posted September 11, 2013 In c++ you can do Vector3 v;GetCarSpeedVector(veh, &v, true);if(v.Y<0)reverse=true; (i think it is v.Y, but it might be v.X) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now