Split navigator settings into subtypes

Mostly to distinguish settings that affect properties of the generated navmesh.
This commit is contained in:
elsid 2021-11-06 13:46:43 +01:00
parent 33bb18850d
commit 01c712d5f1
No known key found for this signature in database
GPG key ID: D27B8E8D10A2896B
38 changed files with 327 additions and 304 deletions

View file

@ -11,13 +11,13 @@ namespace osg
namespace DetourNavigator
{
class RecastMesh;
struct Settings;
struct RecastSettings;
}
namespace SceneUtil
{
osg::ref_ptr<osg::Group> createRecastMeshGroup(const DetourNavigator::RecastMesh& recastMesh,
const DetourNavigator::Settings& settings);
const DetourNavigator::RecastSettings& settings);
}
#endif