UNPKG

navmesh

Version:

A library for fast pathfinding using navigation meshes in JS

13 lines (10 loc) 300 B
/** * `navmesh` is the core logic package. It is game-engine agnostic, usable outside of Phaser. * @packageDocumentation * @module navmesh */ import NavMesh from "./navmesh"; export { NavMesh }; export * from "./common-types"; export * from "./map-parsers"; export default NavMesh;