Skip to content

Instantly share code, notes, and snippets.

@Langerz82
Langerz82 / astar.js
Last active February 17, 2021 20:47
Advanced A* (A-Star) algorithm for a path finder. This does pixel based path finding, for map grids and is an advance on the original authors code.
define(function() {
var AStar = (function () {
/**
* Advanced A* (A-Star) algorithm for a path finder.
* This does pixel based path finding, for map grids and is an advance
* on the original authors code.
*