added camera

This commit is contained in:
2024-08-27 10:28:07 +03:00
parent c662504291
commit db57dfd5f9
8 changed files with 153 additions and 6 deletions

View File

@@ -13,5 +13,5 @@ TEST(UnitTestAstar, FindingRightPath)
mesh.m_verTextMap[{0.f, 1.f, 0.f}] = {{0.f, 2.f, 0.f}};
mesh.m_verTextMap[{0.f, 2.f, 0.f}] = {{0.f, 3.f, 0.f}};
mesh.m_verTextMap[{0.f, 3.f, 0.f}] = {};
omath::pathfinding::Astar::FindPath({}, {0.f, 3.f, 0.f}, mesh);
std::ignore = omath::pathfinding::Astar::FindPath({}, {0.f, 3.f, 0.f}, mesh);
}