EnhancedEditorInput.bAutomaticallyStartConsumingInput editor setting resets to false on editor startup.

UE - Gameplay - Input - Jun 17, 2024

The editor setting for automatically start consuming input can be set to enabled as a boolean, but whenever the editor restarts this value is reset to false. ...

UEnhancedInputUserSettings::LoadOrCreateSettings does not handle the changing of a settings class in the editor

UE - Gameplay - Input - Jun 3, 2024

proposed fix seems ok to me:  UEnhancedInputUserSettings* UEnhancedInputUserSettings::LoadOrCreateSettings(ULocalPlayer* LocalPlayer) { UEnhancedInputUserSettings* Settings = nullptr; ...

Gameplay Debugger does not currently support basic input chords

UE - Gameplay - Input - May 21, 2024

A note from the user, seems like they have a fix for this already I've changed the type of UGameplayDebuggerConfig::ActivationKey to FInputChord and with ony small changes to surrounding code it ...

Enhanced Input Pressed Trigger firing twice

UE - Gameplay - Input - Apr 14, 2024

GetTriggerEvent() in a function bound to an enhanced input action in C++, returns "Triggered" when bound to the "Started" trigger event. ...

Enhanced Input does not fire a "Cancelled" event for mappings that were in progress, but removed during a key-rebuild

UE - Gameplay - Input - Apr 1, 2024

If the return value of a trigger goes from ETriggerState::Ongoing to ETtriggerState::None, without returning a ETriggerState::Triggered, then there should be a "cancelled" event that is fired when E ...

Enhanced input actions with Down triggers mapped to gamepad buttons can get into a bad state after viewport focus is lost

UE - Gameplay - Input - Mar 20, 2024

When we have an enhanced input input action that uses a Down trigger and is mapped to a gamepad button, for example Gamepad Face Button Left, it can get into a bad state when the game is unfocused. ...

Enhanced Input Action Key Remapping maps old mapping over incoming mapping in an unintuitive way

UE - Gameplay - Input - Mar 7, 2024

On EnhancedInputSubsystemInterface.cpp:1040, RebuildControlMappings has a check to preserve mappings for identical action key maps. In most cases, this appears to work correctly; however, in the cas ...

Create a "Input Device User Mapping Schema" of some kind for PC

UE - Gameplay - Input - Feb 13, 2024

When you are playing a game on PC (especially local multiplayer) many developers want to change how input devices are "mapped" to different players. For example, a single player game might want the ...

Skip Assigning Gamepad to Player 1 does not work

UE - Gameplay - Input - Feb 2, 2024

This is a regression from a long while ago that needs to get fixed ...

FlushPressedKeys doesn't clear EventAccumulators, resulting in stale data

UE - Gameplay - Input - Jan 26, 2024

From the user:  The root of the problem appears to be that KeyState.EventAccumulator still has events stored in the structure for 'LeftAlt'. So, although UPlayerInput::FlushInput is called when the ...