Author Topic: Speed with a vehicle with no wheels  (Read 700 times)

I need to add control to my sled but it has no wheels. Is there a way to do this and how?


I did that, but then it got too much control. I just want enough to move forward over a the side of a mountain.

change the original to this

Code: [Select]
   
engineTorque = 0;       // Engine power
   engineBrake = 0;         // Braking when throttle is 0
   brakeTorque = 0;        // When brakes are applied
   maxWheelSpeed = 0;        // Engine scale by current speed / max speed


Kinda looks like it will turn everything off but will try.
Edit: Now I don't move for stuff D:
« Last Edit: December 01, 2008, 05:59:39 PM by Burger »

Kinda looks like it will turn everything off but will try.
Edit. now I move for stuff D:
I don't move for stuff? If you did what Peaceful War said then your vehicles wheels can't spin. Try changing
Code: [Select]
   maxWheelSpeed = 0;        // Engine scale by current speed / max speedto
Code: [Select]
   maxWheelSpeed = 32;        // Engine scale by current speed / max speedand see what happens.