Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
NavMeshComponent.hpp
1#pragma once
2
3#include "../NavMeshAreaTypes.hpp"
4
5class dtNavMesh;
6
7namespace Grindstone::Ai {
9 float cellSize = 0.2f;
10 float cellHeight = 0.1f;
11 dtNavMesh* navMesh = nullptr;
12
13 REFLECT("NavigationMesh")
14 };
15}
Definition NavAgentComponent.hpp:12
Definition NavMeshComponent.hpp:8