mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
31 lines
735 B
C++
31 lines
735 B
C++
|
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_SETTINGS_H
|
||
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_SETTINGS_H
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace DetourNavigator
|
||
|
{
|
||
|
struct Settings
|
||
|
{
|
||
|
float mCellHeight;
|
||
|
float mCellSize;
|
||
|
float mDetailSampleDist;
|
||
|
float mDetailSampleMaxError;
|
||
|
float mMaxClimb;
|
||
|
float mMaxSimplificationError;
|
||
|
float mMaxSlope;
|
||
|
float mRecastScaleFactor;
|
||
|
int mMaxEdgeLen;
|
||
|
int mMaxNavMeshQueryNodes;
|
||
|
int mMaxVertsPerPoly;
|
||
|
int mRegionMergeSize;
|
||
|
int mRegionMinSize;
|
||
|
int mTileSize;
|
||
|
std::size_t mMaxPolygonPathSize;
|
||
|
std::size_t mMaxSmoothPathSize;
|
||
|
std::size_t mTrianglesPerChunk;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|