Optimize closing the Material Editor and Material Instance Editor

UE - Rendering Architecture - Materials - Jan 15, 2026

[Link Removed] We always need to build texture data which requires building debug view mode shaders to do some rendering to get texture densities. Can we find another way to do this? Can we at le ...

Character unnecessary step down during PHYS_Flying mode

UE - Gameplay - Player Movement - Jan 15, 2026

When MovementMode is set to PHYS_Flying, the character may unexpectedly step down by MaxStepHeight when colliding with a wall near a ceiling. This occurs because UCharacterMovementComponent::StepUp ...

'Hide Unconnected Pins' Button in the Blueprint Node Details Panel Disconnects SubPins with Connections

UE - Framework - Blueprint - Jan 14, 2026

Given a get node with a struct output, if "Split Struct Pin" is used on the struct and one of that struct's outputs are connected to another node, it does not count as a used pin when the base get n ...

Constraint Binding ID is broken on attach track when subsequence asset is moved.

UE - Anim - Sequencer - Jan 14, 2026

Moving a level sequence asset that contains actors that are being referenced as a subsequence in an attach track causes the references to drop, even though the subsequence reference is correctly upd ...

Curve Retargeting does not work with SourcePose retarget mode

UE - Anim - Rigging - Retargeting - Jan 14, 2026

Currently we build what source curves we are going to remap is done inside of: FIKRetargetCurveRemapOp::AnimGraphPreUpdateMainThread But in our ikretarget processor code we skip calling that functi ...

Detaching a component may not be replicated to clients

UE - Networking - Jan 13, 2026

Because the archetype for scene/static mesh components has a null value for AttachParent, there are some situations where changes to a replicated component's AttachParent are not replicated to clien ...

Detaching a component with "KeepRelative" location rule can result in incorrect location on client

UE - Networking - Jan 13, 2026

When receiving a replicated detachment, USceneComponent::PostRepNotifies will call DetachFromComponent with the KeepWorldTransform detachment rule. If the component is detached on the server with th ...

bWeldSimulatedBodies not replicated with attachment

UE - Simulation - Core - Jan 13, 2026

The bWeldSimulatedBodies attachment parameter is not replicated to clients, both in USceneComponent's attachment replication handling and in AActor's FRepAttachment struct. If AttachToComponent is c ...

USceneComponent::AttachToComponent may not be called on client depending on replication order

UE - Networking - Jan 13, 2026

If the component being attached is received first, OnRep_AttachParent will set bNetUpdateAttachment to true, so USceneComponent::PostRepNotifies will call AttachToComponent. If the attach parent is ...