Пример #1
0
 void OnPathpointAddedEventCalled(CoordinateEventHandler handler, CoordinateEventArgs args)
 {
     if (PathPointFollowerMode == true)
     {
         JumpTo(args.Coordinate);
     }
 }
Пример #2
0
 void OnWaypointEventCalled(CoordinateEventHandler handler, CoordinateEventArgs args)
 {
     if (handler != null)
     {
         handler(this, args);
     }
 }