renamed physics_entity_solve_contacts (was default_contact_solver)

This commit is contained in:
Sara 2023-10-24 23:15:29 +02:00
parent e86fa1bdef
commit 4047d04686
4 changed files with 5 additions and 4 deletions

View file

@ -25,7 +25,7 @@ void player_spawn(Player* self, Vector at) {
}
void player_collision_solver(Player* self, List* contacts) {
default_contact_solver(Player_as_PhysicsEntity(self), contacts);
physics_entity_solve_contacts(Player_as_PhysicsEntity(self), contacts);
}
void player_start(Player* self) {