disable corner cutting

This commit is contained in:
Hanusiak Piotr 2022-02-17 12:44:57 +01:00
parent eae6c2c5e3
commit ecd4b5907a

View File

@ -18,6 +18,7 @@ export class PathfindingManager {
this.easyStar = new EasyStar.js();
this.easyStar.enableDiagonals();
this.easyStar.disableCornerCutting();
this.grid = collisionsGrid;
this.tileDimensions = tileDimensions;