Hi!
I have this code
Code:
_bouge_o_n = c_move (enTete,vector(10 * (key_w - key_s) * time_step, 6 * (key_a - key_d) * time_step, 0),
nullvector, IGNORE_MAPS | ACTIVATE_TRIGGER | IGNORE_CONTENT | USE_BOX | GLIDE | IGNORE_PASSABLE); //
it works very well if I move forward or backward.
But if I pan.
Code:
camera.pan -= 5 * mouse_force.x * time_step; // rotate the camera around by moving the mouse
I pan through the wall and through enttities. I sometimes get stuck.

Anyway to stop this.