Crash on opening Control Rig asset that was created in UE5-EA

UE - Anim - Rigging - Control Rig - Nov 8, 2021

This issue was found from an external user on Twitter using UE5-Early Access - [Link Removed] The crash happens on asset load.  User says that they were following Gabriele's video - [Link Removed] ...

Actor channel unable to go dormant if replication key is not changed

UE - Networking - Nov 4, 2021

If the subobject's RepKey is not updated after setting the actor to go dormant, then the subobject won't be replicated. This causes FObjectReplicator::ReadyForDormancy to return false for the subobj ...

Camera manager will not tick if the game is paused on begin play or possessed events

UE - Gameplay - Nov 4, 2021

This is an interesting bug because it is only happening on BeginPlay. I guess that there is some order of operations that the camera manager uses during creation that will stop if the game is paused ...

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 ...

MoviePipeline: Can't inherit from UMoviePipelineSetting in BP due to PURE_VIRTUAL

UE - Anim - Sequencer - Oct 28, 2021

IsValidOnMaster/IsValidOnShot need to be BlueprintNativeEvents with a default C++ implementation and allow derived classes to override the function. This is needed so that you can create custom set ...

Instances of Blueprints implemented native interface cannot be assigned to interface variables

UE - Gameplay - Blueprint - Oct 28, 2021

FInterfaceProperty::SerializeItem (and ImportText) attempt to determine if the passed in object implements the interface in question. They do this by calling GetInterfaceAddress, which tries to get ...

OSS Steam: SteamSocket listen connections do not work after poll group changes

UE - Online - Oct 25, 2021

In 4.27 the logic in SteamSocket.cpp which is part of the SteamSockets plugin was changed to use Poll Groups instead of a removed API function that checked all children of a listen socket. However,  ...

Native default subobjects nulled in child Blueprints on compile

UE - Gameplay - Blueprint Compiler - Oct 25, 2021

From reporting UDN: "We had a weird issue with new components added in C++ not being instanced properly on non-direct Blueprint children. It seems to happen if loading of the parent BP is deferred ...

Cloth debug materials cause asynchronous queue to be flushed out

UE - Simulation - Physics - Character - Oct 25, 2021

The cloth debug materials are causing a slower opening of the editor. Would be better done at plugin initialization time. ...

Const Blueprint Implementable Events don't update if const is removed from the native declaration

UE - Gameplay - Blueprint Editor - Oct 19, 2021

Constness is not updated in overridden BlueprintImplementableEvents when the native declaration is made non-const.  ...