|
@@ -92,12 +92,9 @@ void Car::jump( float correction )
|
|
|
{
|
|
|
// Jump
|
|
|
b2Vec2 spring;
|
|
|
- b2Vec2 forcePoint;
|
|
|
-
|
|
|
spring.Set( 0.0f, -1.7f );
|
|
|
- forcePoint.Set( 0.0f, 0.0f );
|
|
|
|
|
|
- m_bodyCar->ApplyLinearImpulse( spring, forcePoint, true );
|
|
|
+ m_bodyCar->ApplyLinearImpulseToCenter( spring, true );
|
|
|
|
|
|
// Correction
|
|
|
m_bodyCar->ApplyAngularImpulse( - m_bodyCar->GetAngle() * correction, true );
|