Click or drag to resize

AStarPath Constructor

Namespace:  Pathfinding
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public AStarPath(
	Vector3 start,
	Vector3 end,
	Graph mesh,
	TimeSpan generationTime,
	bool success,
	IEnumerable<int> pathHops = null,
	bool isPartialPath = false,
	PathGenerationFailStep failStep = PathGenerationFailStep.Success
)

Parameters

start
Type: Clio.UtilitiesVector3
end
Type: Clio.UtilitiesVector3
mesh
Type: PathfindingGraph
generationTime
Type: SystemTimeSpan
success
Type: SystemBoolean
pathHops (Optional)
Type: System.Collections.GenericIEnumerableInt32
isPartialPath (Optional)
Type: SystemBoolean
failStep (Optional)
Type: PathfindingPathGenerationFailStep
See Also