Pathfinding.RecastGraph.NavmeshTile.GetNodes C# (CSharp) Method

GetNodes() public method

public GetNodes ( GraphNodeDelegateCancelable del ) : void
del GraphNodeDelegateCancelable
return void
			public void GetNodes ( GraphNodeDelegateCancelable del ) {
				if ( nodes == null ) return;
				for ( int i=0; i < nodes.Length && del (nodes[i]); i++ ) {}
			}
		}