//Used to disable all player input (NOTE: Individual controllers can be disabled through their static reference)
 public void DisableAllPlayerInput()
 {
     P1Controller.DisableInput();
     P2Controller.DisableInput();
     P3Controller.DisableInput();
     P4Controller.DisableInput();
 }