Recast: rename shape volume tool source files

Source files were named after the convex polygon volume shape, but the tool can now handle more primitive shapes. Renamed to avoid future confusion.
This commit is contained in:
Kawe Mazidjatari 2024-09-22 00:33:48 +02:00
parent 3eb505e169
commit be27f75442
6 changed files with 9 additions and 9 deletions

View File

@ -45,20 +45,20 @@ add_sources( SOURCE_GROUP "IO/Include"
add_sources( SOURCE_GROUP "Tools"
"ChunkyTriMesh.cpp"
"ConvexVolumeTool.cpp"
"CrowdTool.cpp"
"NavMeshPruneTool.cpp"
"NavMeshTesterTool.cpp"
"OffMeshConnectionTool.cpp"
"ShapeVolumeTool.cpp"
)
add_sources( SOURCE_GROUP "Tools/Include"
"include/ChunkyTriMesh.h"
"include/ConvexVolumeTool.h"
"include/CrowdTool.h"
"include/NavMeshPruneTool.h"
"include/NavMeshTesterTool.h"
"include/OffMeshConnectionTool.h"
"include/ShapeVolumeTool.h"
)
add_sources( SOURCE_GROUP "Utils"

View File

@ -25,7 +25,7 @@
#include "NavEditor/Include/NavMeshTesterTool.h"
#include "NavEditor/Include/NavMeshPruneTool.h"
#include "NavEditor/Include/OffMeshConnectionTool.h"
#include "NavEditor/Include/ConvexVolumeTool.h"
#include "NavEditor/Include/ShapeVolumeTool.h"
#include "NavEditor/Include/CrowdTool.h"
#include "NavEditor/Include/InputGeom.h"
#include "NavEditor/Include/Editor.h"

View File

@ -27,7 +27,7 @@
#include "DebugUtils/Include/DetourDebugDraw.h"
#include "NavEditor/Include/NavMeshTesterTool.h"
#include "NavEditor/Include/OffMeshConnectionTool.h"
#include "NavEditor/Include/ConvexVolumeTool.h"
#include "NavEditor/Include/ShapeVolumeTool.h"
#include "NavEditor/Include/CrowdTool.h"
#include "NavEditor/Include/InputGeom.h"
#include "NavEditor/Include/Editor.h"

View File

@ -27,7 +27,7 @@
#include "NavEditor/Include/NavMeshTesterTool.h"
#include "NavEditor/Include/NavMeshPruneTool.h"
#include "NavEditor/Include/OffMeshConnectionTool.h"
#include "NavEditor/Include/ConvexVolumeTool.h"
#include "NavEditor/Include/ShapeVolumeTool.h"
#include "NavEditor/Include/CrowdTool.h"
#include "NavEditor/Include/InputGeom.h"
#include "NavEditor/Include/Editor.h"

View File

@ -19,7 +19,7 @@
#include "Recast/Include/Recast.h"
#include "DebugUtils/Include/DetourDebugDraw.h"
#include "DebugUtils/Include/RecastDebugDraw.h"
#include "NavEditor/Include/ConvexVolumeTool.h"
#include "NavEditor/Include/ShapeVolumeTool.h"
#include "NavEditor/Include/InputGeom.h"
#include "NavEditor/Include/Editor.h"
#include "naveditor/include/GameUtils.h"

View File

@ -16,8 +16,8 @@
// 3. This notice may not be removed or altered from any source distribution.
//
#ifndef CONVEXVOLUMETOOL_H
#define CONVEXVOLUMETOOL_H
#ifndef SHAPEVOLUMETOOL_H
#define SHAPEVOLUMETOOL_H
#include "NavEditor/Include/Editor.h"
@ -61,4 +61,4 @@ public:
virtual void handleRenderOverlay(double* proj, double* model, int* view);
};
#endif // CONVEXVOLUMETOOL_H
#endif // SHAPEVOLUMETOOL_H