EpPathFinding.cs.PartialGridWPool.GetNodeAt C# (CSharp) Method

GetNodeAt() public method

public GetNodeAt ( int iX, int iY ) : Node
iX int
iY int
return Node
        public override Node GetNodeAt(int iX, int iY)
        {
            GridPos pos = new GridPos(iX, iY);
            return GetNodeAt(pos);
        }

Same methods

PartialGridWPool::GetNodeAt ( EpPathFinding.cs.GridPos iPos ) : Node