Recast: increase cell height to 6.0

This was required as a cell height of 2.0 is too low for the map "mp_rr_canyonlands_64k_x_64k". This particular level is very large, and has another level far underneath; its the old firing range. In order to ensure full coverage on Z, the cell height must be increased. After the change in commit b3946e924aeea05f65f9fcba5e9043771d14af23, the new cell height actually produces more accurate and consistent results accross all levels.
This commit is contained in:
Kawe Mazidjatari 2024-10-20 01:34:32 +02:00
parent 8e3097c321
commit aaddd53cfc

View File

@ -255,7 +255,7 @@ void Editor::resetCommonSettings()
#endif
m_cellSize = 8.0f;
m_cellHeight = 2.0f;
m_cellHeight = 6.0f;
m_traverseLinkDrawParams.dynamicOffset = m_traverseRayDynamicOffset;
m_traverseLinkDrawParams.cellHeight = m_cellHeight;