private void ActorDespawningHandler(object sender, EventArgs e)
 {
     mFlyerControl = null;
 }
 public void SetControllerComponent(FlyerControllerComponent flyerController)
 {
     mFlyerControl = flyerController;
     mFlyerControl.Owner.ActorDespawning += ActorDespawningHandler;
 }
 public FlyerInputProcessor(PlayerIndex inputIndex)
     : base(inputIndex)
 {
     mFlyerControl = null;
 }
Example #4
0
 private void ActorDespawningHandler(object sender, EventArgs e)
 {
     mFlyerControl = null;
 }
Example #5
0
 public void SetControllerComponent(FlyerControllerComponent flyerController)
 {
     mFlyerControl = flyerController;
     mFlyerControl.Owner.ActorDespawning += ActorDespawningHandler;
 }
Example #6
0
 public FlyerInputProcessor(PlayerIndex inputIndex)
     : base(inputIndex)
 {
     mFlyerControl = null;
 }