mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1018 B
C++
38 lines
1018 B
C++
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_SETTINGS_H
|
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_SETTINGS_H
|
|
|
|
#include <string>
|
|
|
|
namespace DetourNavigator
|
|
{
|
|
struct Settings
|
|
{
|
|
bool mEnableWriteRecastMeshToFile;
|
|
bool mEnableWriteNavMeshToFile;
|
|
bool mEnableRecastMeshFileNameRevision;
|
|
bool mEnableNavMeshFileNameRevision;
|
|
float mCellHeight;
|
|
float mCellSize;
|
|
float mDetailSampleDist;
|
|
float mDetailSampleMaxError;
|
|
float mMaxClimb;
|
|
float mMaxSimplificationError;
|
|
float mMaxSlope;
|
|
float mRecastScaleFactor;
|
|
int mBorderSize;
|
|
int mMaxEdgeLen;
|
|
int mMaxNavMeshQueryNodes;
|
|
int mMaxVertsPerPoly;
|
|
int mRegionMergeSize;
|
|
int mRegionMinSize;
|
|
int mTileSize;
|
|
std::size_t mMaxPolygonPathSize;
|
|
std::size_t mMaxSmoothPathSize;
|
|
std::size_t mTrianglesPerChunk;
|
|
std::string mRecastMeshPathPrefix;
|
|
std::string mNavMeshPathPrefix;
|
|
};
|
|
}
|
|
|
|
#endif
|