Pathfinding.FloodPathTracer.Construct C# (CSharp) Method

Construct() public static method

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