2019-11-27 22:45:01 +00:00
|
|
|
#ifndef OPENMW_COMPONENTS_SCENEUTIL_RECASTMESH_H
|
|
|
|
#define OPENMW_COMPONENTS_SCENEUTIL_RECASTMESH_H
|
|
|
|
|
|
|
|
#include <osg/ref_ptr>
|
|
|
|
|
|
|
|
namespace osg
|
|
|
|
{
|
|
|
|
class Group;
|
2024-05-18 12:09:51 +00:00
|
|
|
class StateSet;
|
2019-11-27 22:45:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace DetourNavigator
|
|
|
|
{
|
|
|
|
class RecastMesh;
|
2021-11-06 12:46:43 +00:00
|
|
|
struct RecastSettings;
|
2019-11-27 22:45:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace SceneUtil
|
|
|
|
{
|
2024-05-18 12:09:51 +00:00
|
|
|
osg::ref_ptr<osg::Group> createRecastMeshGroup(const DetourNavigator::RecastMesh& recastMesh,
|
|
|
|
const DetourNavigator::RecastSettings& settings, const osg::ref_ptr<osg::StateSet>& debugDrawStateSet);
|
2019-11-27 22:45:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|