mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 12:58:00 +03:00
Add missing TargetPolygonNotFound enum value to lua bindings
This commit is contained in:
parent
e20d52d23c
commit
626d7b2282
2 changed files with 2 additions and 1 deletions
|
@ -82,7 +82,7 @@ message(STATUS "Configuring OpenMW...")
|
|||
set(OPENMW_VERSION_MAJOR 0)
|
||||
set(OPENMW_VERSION_MINOR 49)
|
||||
set(OPENMW_VERSION_RELEASE 0)
|
||||
set(OPENMW_LUA_API_REVISION 71)
|
||||
set(OPENMW_LUA_API_REVISION 72)
|
||||
set(OPENMW_POSTPROCESSING_API_REVISION 2)
|
||||
|
||||
set(OPENMW_VERSION_COMMITHASH "")
|
||||
|
|
|
@ -213,6 +213,7 @@ namespace MWLua
|
|||
{ "NavMeshNotFound", DetourNavigator::Status::NavMeshNotFound },
|
||||
{ "StartPolygonNotFound", DetourNavigator::Status::StartPolygonNotFound },
|
||||
{ "EndPolygonNotFound", DetourNavigator::Status::EndPolygonNotFound },
|
||||
{ "TargetPolygonNotFound", DetourNavigator::Status::TargetPolygonNotFound },
|
||||
{ "MoveAlongSurfaceFailed", DetourNavigator::Status::MoveAlongSurfaceFailed },
|
||||
{ "FindPathOverPolygonsFailed", DetourNavigator::Status::FindPathOverPolygonsFailed },
|
||||
{ "InitNavMeshQueryFailed", DetourNavigator::Status::InitNavMeshQueryFailed },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue