Route gamepad to second window setting is broken

UE - Gameplay - Input - Nov 11, 2022

The RemapControllerInput function call likely needs to be added back to the game viewport client as a fix.  ...

FEnhancedActionKeyMapping struct has incorrect comparison results

UE - Gameplay - Input - Nov 11, 2022

The fix for this is to override the  FEnhancedActionKeyMapping::operator== to account for the deep copy that happens on modifiers instead of comparing addresses ...

Nanite material audit reports null material when WorldGridMaterial replaces a deleted material in the editor

UE - Rendering Architecture - Materials - Nov 10, 2022

Workaround it to reassign a material to the mesh and resave ...

APlayerController::IsPlayerMuted no longer supported on clients

UE - Online - Nov 9, 2022

Recent changes to the player controller's mute functions have resulted in the MuteList not being updated on clients, and instead APlayerController::ClientMutePlayer now just directly calls MuteRemot ...

Creating a new C++ class derived from the UAbiltyTask from the Gameplay Ability System plugin fails to compile

UE - Foundation - Cpp Tools - Live Coding - Nov 3, 2022

This is not a regression Tested in //UE5/Release-5.0 CL20979098 Creating a new C++ class derived from the Abilty Task from the Gameplay Ability System plugin fails to compile. From the Live Coding ...

Material Editor: Highlight/Isolate should warn user when using Nanite Mesh

UE - Graphics Features - Nanite - Oct 27, 2022

Editor should visually warn the user that this feature doesn't work with Nanite, or that the Nanite Preview mesh needs to be enabled (or forcibly enable it when they attempt to use this option), oth ...

Wrong height from Chaos::FHeightField::GetHeightAt()

UE - LD & Modeling - Terrain - Landscape - Oct 27, 2022

UWorld::InternalGetNetMode uses DemoNetDriver, leading to unexpected NetMode being returned

UE - Networking - Oct 25, 2022

UWorld::InternalGetNetMode will use DemoNetDriver->GetNetMode() if there is a DemoNetDriver, resulting in NM_ListenServer being returned when recording a replay. This seems to have been originally a ...

Any Key key binding is non-functional with Enhanced Input

UE - Gameplay - Input - Oct 19, 2022

I've tried implementing BP logic off an EI Event using Any Key, never executes. Tried having the associated Input Action have Consume Input set to true- still nothing. I'm not sure what the expect ...

'Autosized' SWindow with `.AutoHeight()` elements has unwanted white space

UE - Editor - UI Systems - Slate - Oct 12, 2022

Heavily discussed and diagnosed in this thread: [Link Removed] [Link Removed] narrowed down the cause: It's the calculation inside the SWindow that is wrong, sometime. It adds SWindowDefs::Default ...