I've constructed an octree for use in frustum culling. The question is, should I insert an AABB for each bone of each object, or just the one AABB for the object?
Tell me more
×
Game Development Stack Exchange is a question and answer site for
professional and independent game developers. It's 100% free, no registration required.
|
|
You should really just use one AABB for most objects. You could always check the object twice, first on a per-object basis and then on a per-bone basis if you want the extra precision. |
|||
|
|