GetMouseX returns stuttering value if ShowMouseCursor is enabled

UE - Gameplay - Input - May 11, 2022

Showing the mouse cursor and holding down the left mouse button while dragging will cause the MouseX event to broadcast incorrect axis values.  ...

ETriggerEvent::Canceled is not set when the player controller is set to "UI Only" in Enhanced Input

UE - Gameplay - Input - Apr 20, 2022

From the UDN:When setting the PlayerController input mode to "UI Only", all game inputs are blocked/frozen to their current state, and release (ETriggerEvent::Canceled) is not called on them. Any in ...

Mouse Y axis not working using ArchVisCharacter.

UE - Gameplay - Input - Apr 20, 2022

The Mouse Y axis does not work when assigning LookUp key bind in the project setting. If assigned the mouse will look left/right while moving the mouse and down. ...

Gamepad_Special_Left is bound to different buttons on Windows and Mac for P.S4/5 Controllers

UE - Gameplay - Input - Apr 20, 2022

On Windows: Gamepad_Special_Left is triggered by pressing the touchpad button On Mac: Gamepad_Special_Left is triggered by pressing the "Share" button ...

Trying to chord two buttons already mapped to actions to fire a third action when both are actuated fails.

UE - Gameplay - Input - Apr 14, 2022

We're aiming to set up LT - action 1, RT - action 2, LT + RT - action 3 here. I don't think this is supported via chording at present. You'd need to handle it manually (probably via adding/removing ...

Lyra standalone game instance crashes when Player #2 equips new weapon

UE - Gameplay - Input - Apr 5, 2022

Discovered while testing Lyra project for //UE5/Main - Foundation Shelf - FAssetDataGatherer Stall Fix Smoke. This issue is NOT dependent on the shelf and occurs without the unshelved files. This ...

Input isn't recognized for Shift+F, or just the F key when the Shift key is also pressed down

UE - Gameplay - Input - Nov 23, 2021

This is a regression Tested in: //UE4/Release-4.26.2 CL15973114 Binary - Did not reproduced //UE4/Release-4.27.1 CL17735300 Binary - Reproduced //UE5/Release-5.0-EarlyAccess CL16682836 Binary - Repr ...

Input isn't recognized for the E key when the Ctrl key is also pressed down

UE - Gameplay - Input - Nov 23, 2021

When holding down the Ctrl key and pressing another key, if there is an input event bound to that key, then the nodes placed after that input event are triggered. However, this is not the case with ...

Numpad + Shift does not release keystrokes

UE - Gameplay - Input - Nov 9, 2021

The combination of Numpad + Shift seems to have various problems. https://answers.unrealengine.com/questions/899468/what-is-the-issue-with-shift-num-key-combinations.html  Regression No, according ...

Input consumed by a widget's action binding can be skipped if using key modifiers

UE - Gameplay - Input - Oct 29, 2021

The following code in UPlayerInput::GetChordsForKeyMapping is at fault for this:  !(KeyMapping.bAlt || KeyMapping.bCtrl || KeyMapping.bShift || KeyMapping.bCmd || ActionBinding.KeyEvent == EInputEv ...