Merge remote-tracking branch 'origin/juliuse98-patch-1' into main

This commit is contained in:
DerTyp187
2021-09-27 08:24:05 +02:00
2 changed files with 37 additions and 161 deletions

View File

@@ -7,24 +7,11 @@ public class PathNode
private Vector3 position;
public Vector2 index;
private float scoreF;
private float scoreG;
private float scoreH;
public List<PathNode> neigbors;
private float score;
public PathNode(Vector3 Pos, float Score) {
private PathNode previous;
public PathNode(Vector3 Pos) {
neigbors = new List<PathNode>();
position = Pos;
scoreG = Mathf.Infinity;
scoreF = Mathf.Infinity;
scoreH = Mathf.Infinity;
score = Score;
}
public Vector3 Position { get => position; set => position = value; }
public float Hscore { get => scoreH; set => scoreH = value; }
public float Gscore { get => scoreG; set => scoreG = value; }
public float Fscore { get => scoreF; set => scoreF = value; }
public PathNode Previous { get => previous; set => previous = value; }
}