StreamableManager completion callback can happen after being canceled in same frame

UE - Foundation - Core - Feb 16, 2024

FStreamableHandle (used as part of the FStreamableManager system) has a CancelHandle function that stops it from calling any completion callbacks related to that handle (it could cancel the load req ...

UNetDriver server-side hitch results in ActorInfo->NextUpdateTime far into future

UE - Networking - Feb 16, 2024

A high UWorld::Tick DeltaSeconds (i.e. GameThread hitch) results in a high UNetDriver::TickFlush DeltaSeconds. This DeltaSeconds can high (many seconds) if the hitch is long. This value then affects ...

Placing a section at the end of montage is not properly handled

UE - Anim - Gameplay - Feb 24, 2024

Placing a  section at the very end of a montage with no duration or animation assigned after it is not properly handled.  Normally sections with 0 length are skipped and search continues since they ...

"Build All Levels" does not re-AddNavigationSystemToWorld

UE - AI - Navigation - Feb 28, 2024

The Build All Levels editor action cleans up the world's NavDataSet (UNavigationSystemV1::NavDataSet) as pre-rebuild world cleanup by calling: SetNavigationSystem(nullptr); inside UWorld::Cleanu ...

Level asset "Diff against depot" opens P4 Merge tool

UE - World Creation - Worldbuilding Tools - Mar 1, 2024

You can right click a level asset in the editor's Content Browser and do the action Source Control > Diff against Depot. However, this does not provide a useful diff window. It currently opens the d ...

FVulkanDynamicRHI::RHIReadSurfaceData​ incorrect for FLinearColor​.

UE - Rendering Architecture - RHI - Mar 4, 2024

The FLinearColor implementation for FVulkanDynamicRHI is incorrect. FLinearColor stores 32 bit floats in linear space, while FColor stores 8 bit integers encoded with sRGB applied. The implementatio ...

Deprecated blueprint variable fixups may fail depending on loading order

UE - Gameplay - Blueprint - Mar 7, 2024

There is currently no simple way to do a deprecated variable fixup on native variables that are set by a blueprint class. For a simple variable rename, CoreRedirects can be used and will work proper ...

GeometryCollection clustered by ClusteredGroupIndex does not respect child's gravity setup

UE - Simulation - Physics - Mar 7, 2024

Following code works as a workaround void FClusterUnionManager::HandleAddOperation(FClusterUnionIndex ClusterIndex, const TArray<FPBDRigidParticleHandle*>& Particles, bool bReleaseClustersFirst) ...

SAnalogSlider moves slowly when step size is large

UE - Editor - UI Systems - Slate - Mar 6, 2024

SAnalogSlider calculates FastestStepTime by multiplying the step size value by a constant, resulting in high numbers for larger step sizes. This gets lerped from 1 and used as the repeat time, resul ...

On NM_Client, GameplayDebugger defaults to green smiley for NPCs implying running BehaviorTree while AI info is unknown

UE - AI - Debugging - Mar 12, 2024

Context GameplayDebugger (Press ` in-game) displays a green smiley (AICON-Green) for AIControlled pawns that are running a BehaviorTree and a red angry face (AICON-Red) otherwise. If the AIControll ...