Example #1
0
 internal override void _reset(GridPos iStartPos, GridPos iEndPos, BaseGrid iSearchGrid = null)
 {
 }
Example #2
0
 protected BaseGrid(BaseGrid b)
 {
     MGridRect = new GridRect(b.MGridRect);
     Width     = b.Width;
     Height    = b.Height;
 }
Example #3
0
 public AStarParam(BaseGrid iGrid, float iweight, DiagonalMovement iDiagonalMovement = DiagonalMovement.IfAtLeastOneWalkable, HeuristicMode iMode = HeuristicMode.Euclidean)
     : base(iGrid, iDiagonalMovement, iMode)
 {
     Weight = iweight;
 }