Pathfinding.ConstantPath.Construct C# (CSharp) Method

Construct() public static method

public static Construct ( Vector3 start, int maxGScore, OnPathDelegate callback = null ) : ConstantPath
start Vector3
maxGScore int
callback OnPathDelegate
return ConstantPath
		public static ConstantPath Construct (Vector3 start, int maxGScore, OnPathDelegate callback = null) {
			ConstantPath p = PathPool<ConstantPath>.GetPath ();
			p.Setup (start,maxGScore,callback);
			return p;
		}