示例#1
0
 public List <Node> GetPathFinding(Node init, Node finit)
 {
     this.init   = init;
     this.finit  = finit;
     this.finPos = finit.transform.position;
     return(_theta.Run(init, Satisfies, GetNeighbours, GetCost, Heuristic, InSight));
 }