From d8b67c27ccb55124df9c87ab77438fda4aed28db Mon Sep 17 00:00:00 2001 From: mik1893 Date: Sun, 26 Jun 2016 12:51:16 +0100 Subject: [PATCH 1/2] Add GitIgnore --- .gitignore | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..7dbed8f3e --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ + +build*/ +.directory +.mailmap +*.orig +*.rej +*~ +.hg/ +*.kdev* +.DS_Store +CMakeLists.txt.user +*.bak +*.patch +*.diff +*.REMOTE.* +*.BACKUP.* +*.BASE.* +*.LOCAL.* From 0c102b79de0bbf3a56eece9df66e8b937a15375e Mon Sep 17 00:00:00 2001 From: mik1893 Date: Sun, 26 Jun 2016 12:51:33 +0100 Subject: [PATCH 2/2] Fix MMAPS Generation --- dep/recastnavigation/Detour/DetourNavMeshBuilder.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dep/recastnavigation/Detour/DetourNavMeshBuilder.h b/dep/recastnavigation/Detour/DetourNavMeshBuilder.h index 8d8ef2e65..aa802d71c 100644 --- a/dep/recastnavigation/Detour/DetourNavMeshBuilder.h +++ b/dep/recastnavigation/Detour/DetourNavMeshBuilder.h @@ -60,6 +60,8 @@ struct dtNavMeshCreateParams float cs; // Cell size (xz) (wu). float ch; // Cell height (y) (wu). int tileSize; // Tile size (width & height) (vx). + int tileLayer; + bool buildBvTree; }; // Build navmesh data from given input data.