Advanced collision detection

Started by
2 comments, last by Kaezin 20 years, 5 months ago
How do games like Halflife and Quake do their collision detection? With regards both to terrain/level and other player models. If they do something like bounding boxes, how do they know what part of the level to check with?
Half the people you know are below average.Trogdor the Burninator
Advertisement
BSPs.

BSP trees are well documented in books and on the internet - there are probably even some tutorials on this site.

I think Quake uses a standard bounding volume for all players. I''m not sure what it is, but a cylinder would make sense.
quote:Original post by jyk

I think Quake uses a standard bounding volume for all players. I''m not sure what it is, but a cylinder would make sense.


IIRC it uses BBoxes.

BSPs are just a form of speeding up the collision detection by finding the collision surfaces quicly. you can check out the source for Quake2 for more info.

Ohhhh that makes a lot of sense. I knew about BSP trees but completely forgot they could be used like this
Half the people you know are below average.Trogdor the Burninator

This topic is closed to new replies.

Advertisement