Terrain colliders match the shape of a Terrain exactly, for extremely accurate Terrain collision simulation. The Terrain collider is the most accurate collider type for Terrains.
Unlike primitive colliders and Mesh colliders, Terrain colliders are heightmap-based. PhysX generates Terrain colliders from the heightmap data of the corresponding Terrain, rather than from a pre-defined shape or a Mesh.
For detailed information on heightmap-based colliders in PhysX, see the Nvidia PhysX documentation Geometry: Height Fields.
The Terrain collider builds its collision geometry to match the heightmap data of the assigned TerrainData asset, including its shape, position and scale. The benefit of this is that you can make the shape of the collider exactly the same as the shape of the visible Terrain, which creates more precise and realistic collisions.
A Terrain has two brush types that add Prefabs to the Terrain: Trees and Details. These brushes allow you to quickly add trees, bushes, rocks, and other terrain details. For more detailed information, see Terrain documentation on Brushes, Trees, and Grass and other details.
When you create a Prefab, you add any colliders you want to that Prefab. When you use a Tree Brush to apply that Prefab to the Terrain, you need to use the Terrain collider to enable or disable those colliders. On the Terrain collider, use Enable Tree Colliders to toggle Tree Prefab colliders.
The Terrain collider only generates colliders for Prefabs that you add with the Tree Brush. It does not generate colliders for Prefabs that you add with the Details Brush, because the Details Brush only renders a Prefab’s Mesh, and not its colliders. If you want something on the Terrain GameObject to have a collider, use the Trees brush to add it.
Unity only generates Tree Prefab colliders at runtime, so they only appear in the Physics Debug collider Geometry view at runtime.
The Terrain collider is the correct collider choice for a Terrain in almost all cases. Terrain colliders accurately represent the shape of the Terrain, enabling precise collision detection between the Terrain and other colliders. Terrain colliders also require minimal setup and configuration time, because Unity automatically generates them when you create a Terrain.
If you are looking for opportunities to improve performance, you can try an alternative approach to Terrain collisions only if the Terrain has large flat areas, or if the physics collision does not need to be very accurate. The following sections describe two alternative approaches.
You can create a TerrainData with a lower resolution, and apply it to the Terrain collider.
Duplicate the Terrain’s existing TerrainData, and reduce the resolution. Set the TerrainData field of the Terrain collider to the reduced resolution TerrainData.
Note that Unity displays a warning on the Terrain Inspector that the collider and terrains have different TerrainDatas, but you can ignore this as long as you’ve done it intentionally.
You can export the Terrain’s heightmap and use external software to turn it into a simplified Mesh collider.
Install the Terrain Tools package. Use the Export Heightmap tool to export the Terrain heightmap. Use 3D modeling software to create a mesh from the heightmap. Use 3D modeling software to run a mesh simplification routine on the mesh. Import the mesh back into Unity to use as the source for a mesh collider.