(x: number, y: number)
| 301 | // ========================================================================== |
| 302 | |
| 303 | getNodeAt(x: number, y: number): IPathNode | null { |
| 304 | const polygon = this.findPolygonAt(x, y); |
| 305 | return polygon ? this.nodes.get(polygon.id) ?? null : null; |
| 306 | } |
| 307 | |
| 308 | getNeighbors(node: IPathNode): IPathNode[] { |
| 309 | const navNode = node as NavMeshNode; |
nothing calls this directly
no test coverage detected