// Method for when we finished processing a path
 public void FinishedProcessingPath(Vector3[] path, bool success)
 {
     currentPathRequest.callBack(path, success);
     isProcessingPath = false;
     TryProcessNext();
 }