3D collision physics. Response when hitting wall, floor or roof
- by GlamCasvaluir
I am having problem with the most basic physic response when the player collide with static wall, floor or roof. I have a simple 3D maze, true means solid while false means air:
bool bMap[100][100][100];
The player is a sphere. I have keys for moving x++, x--, y++, y-- and diagonal at speed 0.1f (0.1 * ftime). The player can also jump. And…