- Home /
Cutting mesh colliders; Does Unity do culling automatically or do I make my own code?
Did not find any information if Unity does collision "culling" automatically or do I have to write my own code. Something that checks if it is even possible car to hit some mesh collider bounding box, and only after that check actual collision with mesh.
Answer by Kibsgaard · Feb 11, 2013 at 11:10 AM
Unity (probably using PhysX) already does that by calculating collisions between every objects' Axis-Aligned Bounding Boxes (AABB) and then only calculate mesh collisions between meshes which AABBs are intersecting.
Your answer
Follow this Question
Related Questions
Should Sound Objects Be Included in Culling? 0 Answers
Unity Skinned Mesh Renderer & Rendering Optimization 1 Answer
Mesh collider mesh baking much slower offline 0 Answers
Low framerate with culling mask set to nothing? 1 Answer
Is it possible to start a new game after a certain point in time of a previous playthrough? 1 Answer