 | AStarNodeEstimateHeuristicMovementCost Method |
Returns the estimated, heuristic movement cost needed to get
from this node to the specified other one.
Namespace: Slash.AI.PathfindingAssembly: Slash.AI.Pathfinding (in Slash.AI.Pathfinding.dll) Version: 1.0.6018.40189
Syntaxpublic abstract int EstimateHeuristicMovementCost(
IAStarNode target
)
Public MustOverride Function EstimateHeuristicMovementCost (
target As IAStarNode
) As Integer
public:
virtual int EstimateHeuristicMovementCost(
IAStarNode^ target
) abstract
abstract EstimateHeuristicMovementCost :
target : IAStarNode -> int
Parameters
- target
- Type: Slash.AI.PathfindingIAStarNode
Target node.
Return Value
Type:
Int32Estimated movement cost.
Implements
IAStarNodeEstimateHeuristicMovementCost(IAStarNode)
See Also