Hi,
> When I press the forward key in my application I call
> dBodyAddForce (..)
> How else can I do this?
You can change linear speed
--== pseodo c++ ==--
if ( Length (dBodyGetLinearSpeed() ) > MAX_SPEED )
{
direction= Normalize (dBodyGetLinearSpeed());
dBodySetLinearSpeed( direction* MAX_SPEED );
}
--
Tomek Klin