Pathfinding.LayerGridGraph.Linecast C# (CSharp) Method

Linecast() public method

public Linecast ( Vector3 _a, Vector3 _b ) : bool
_a UnityEngine.Vector3
_b UnityEngine.Vector3
return bool
		public new bool Linecast (Vector3 _a, Vector3 _b) {
			GraphHitInfo hit;
			return Linecast (_a,_b,null, out hit);
		}
		

Same methods

LayerGridGraph::Linecast ( Vector3 _a, Vector3 _b, GraphNode hint ) : bool
LayerGridGraph::Linecast ( Vector3 _a, Vector3 _b, GraphNode hint, GraphHitInfo &hit ) : bool