Example #1
0
 // Joystick!
 public void FeatherMove(double x, double y)
 {
     if (feather == null)
     {
         return;
     }
     feather.Roll((float)x);
     feather.Pitch((float)y);
 }