예제 #1
0
        public bool FoundIfAccesible(Node startNode, Node targetNode)
        {
            Vector3[] waypoints = new Vector3[0];

            if (startNode.walkable && targetNode.walkable)
            {
                return(_pathAlgorithm.IsNodeAccesible(startNode, targetNode));
            }
            return(false);
        }