(x: number, y: number)
| 328 | } |
| 329 | |
| 330 | isWalkable(x: number, y: number): boolean { |
| 331 | return this.findPolygonAt(x, y) !== null; |
| 332 | } |
| 333 | |
| 334 | // ========================================================================== |
| 335 | // 寻路 | Pathfinding |
nothing calls this directly
no test coverage detected