public void SetPath(WalkPath path)
 {
     pathHandler.SetPath(path);
 }
Example #2
0
 public void SetPath(WalkPath path)
 {
     currentWaypoint = -1;
     Path            = path;
 }
Example #3
0
 public void ResetPath()
 {
     Path            = null;
     currentWaypoint = -1;
 }
Example #4
0
        public void SetPath(Point2D startLocation, Point2D waypointOffsets)
        {
            WalkPath path = new WalkPath(startLocation, waypointOffsets);

            SetPath(path);
        }