readme-blender.txt 1014 B

1234567891011121314151617181920212223
  1. The version of Recast is 1.5.0, from:
  2. https://github.com/recastnavigation/recastnavigation
  3. Changes made:
  4. * Recast/Source/RecastMesh.cpp: made buildMeshAdjacency() non-static so it can be used with recast-capi
  5. * Recast/Include/Recast.h: Added forward declaration for buildMeshAdjacency()
  6. The following additional files were added:
  7. * recast-capi.cpp
  8. * recast-capi.h
  9. These expose a C interface to the Recast library, which has only C++ headers.
  10. The version of Detour is 1.4, from:
  11. https://code.google.com/archive/p/recastnavigation/downloads
  12. Changes made:
  13. * DetourStatNavMesh.h: use more portable definition of DT_STAT_NAVMESH_MAGIC
  14. * DetourStatNavMesh.cpp: comment out some unused variables to avoid compiler warnings
  15. * DetourStatNavMeshBuilder.h: add forward declaration for createBVTree
  16. * DetourStatNavMeshBuilder.cpp: made createBVTree non-static for use with recast-capi
  17. The CMakeLists.txt file has been added, since the original software does not include build files for the libraries.
  18. ~rdb