KF2-Server-Extension/ServerExt/Classes/MS_Input.uc
2023-05-14 05:49:12 +03:00

17 lines
365 B
Ucode

Class MS_Input extends PlayerInput;
event bool FilterButtonInput(int ControllerId, Name Key, EInputEvent Event, float AmountDepressed, bool bGamepad)
{
if (Event==IE_Pressed && (Key == 'Escape' || Key == 'XboxTypeS_Start'))
{
MS_PC(Outer).AbortConnection();
return true;
}
return false;
}
defaultproperties
{
OnReceivedNativeInputKey=FilterButtonInput
}