コード例 #1
0
 public CalculateExpansionBFSTimeSliced(IPathfindingConfiguration config, Vector2Int grid_pos_origin, int range)
 {
     this.grid_pos_origin = grid_pos_origin;
     this.range           = range;
 }
コード例 #2
0
 public CalculatePathAStarTimeSliced(IPathfindingConfiguration config, Vector2Int grid_pos_origin, Vector2Int grid_pos_dest)
 {
     this.config          = config;
     this.grid_pos_origin = grid_pos_origin;
     this.grid_pos_dest   = grid_pos_dest;
 }