Skip to content

Commit

Permalink
[game] disabled pacejka forces since they don't act well on the reyca…
Browse files Browse the repository at this point in the history
…st vehicle (I need to build my own)
  • Loading branch information
PanosK92 committed Dec 10, 2024
1 parent 756b97e commit b8cc8fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion runtime/Game/Car.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,8 @@ namespace Spartan
btVector3 force_position;
tire_friction_model::compute_tire_force(m_parameters, i, velocity_vehicle, &force, &force_position);

m_parameters.body->applyForce(force, force_position);
// disable for now as they don't behave well, I think I need to ditch the bullet raycast vehicle and implement my own
//m_parameters.body->applyForce(force, force_position);
}

// anti-roll bar
Expand Down

0 comments on commit b8cc8fd

Please sign in to comment.