Table of Contents

Class QuickPathFinder.PathNode

Namespace
Global
Assembly
Assembly-CSharp.dll
public class QuickPathFinder.PathNode
Inheritance
QuickPathFinder.PathNode
Inherited Members

Constructors

PathNode(int, int, PathNode, PathCost, PathCost)

public PathNode(int x, int y, QuickPathFinder.PathNode oneStepCloserToGoal, PathCost stepsToGoal, PathCost heuresticValue)

Parameters

x int
y int
oneStepCloserToGoal QuickPathFinder.PathNode
stepsToGoal PathCost
heuresticValue PathCost

Fields

heuresticValue

public PathCost heuresticValue

Field Value

PathCost

nextInHeap

public QuickPathFinder.PathNode nextInHeap

Field Value

QuickPathFinder.PathNode

oneStepCloserToGoal

public QuickPathFinder.PathNode oneStepCloserToGoal

Field Value

QuickPathFinder.PathNode

stepsToGoal

public PathCost stepsToGoal

Field Value

PathCost

x

public int x

Field Value

int

y

public int y

Field Value

int

Properties

Pos

public IntVector2 Pos { get; }

Property Value

IntVector2